/* ライセンス・導入形態ページ */
.Licenses_content .fees{
    background-color: rgba(253, 253, 253, 1);
}

.Licenses_content>div>.content{
    padding:100px 0px;
}

.Licenses_content  h2{
    text-align: center;
    margin:0px;
}

.Licenses_content  .license_tab {
  padding-bottom: 40px;
  max-width: 700px;
  width:100%;
  margin:0 auto;
}

.Licenses_content  .license_tab .tab_wrap{
    width:100%;
    display: flex;
}

.Licenses_content  .license_tab .tab_item {
  width: 50%;
  height: 50px;
  border-bottom: 3px solid rgba(207, 206, 206, 1);
  font-size: 18px;
  color: rgba(14, 8, 8, 1);
  transition:  0.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Licenses_content  .license_tab input:checked + .tab_item{
    font-weight: 700;
  border-bottom:solid 3px rgba(192, 0, 0, 1);
}

.Licenses_content  .license_tab input:not(:checked)+.tab_item{
    font-weight: 600;
    cursor: pointer;
    color:rgba(62, 57, 57, 0.75);
}

.Licenses_content .license_tab input[name="tab_item"],
.Licenses_content .license_tab input[name="term_tab_item"] {
  display: none;
}

.Licenses_content .license_tab .tab_wrap:has(#company:checked) ~ #company_content,
.Licenses_content .license_tab .tab_wrap:has(#university:checked) ~ #university_content,
.Licenses_content .license_tab .tab_wrap:has(#term_company:checked) ~ #term_company_content,
.Licenses_content .license_tab .tab_wrap:has(#term_university:checked) ~ #term_university_content {
  display: block;
}

.Licenses_content  .tab_content {
  display: none;
  padding: 40px 40px 0;
  clear: both;
  overflow: hidden;
}

.Licenses_content  .tab_content .plan_content{
    display: flex;
    justify-content: space-around;
}

.Licenses_content  .tab_content .plan_content .plan{
    width: 45%;
    z-index: 1;
    border-radius: 20px;
    border: solid 5px;
    margin: 0px;
    height: auto;
    overflow: hidden;
    box-sizing: border-box;
}

.Licenses_content  .tab_content .plan_content .plan_name{
    color: rgba(246, 244, 244, 1);
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    width: 100%;
    padding: 20px 10px;
    box-sizing: border-box;
}

.Licenses_content  .tab_content .plan_content .one_job{
    border-color: rgba(38, 33, 33, 1);
}

.Licenses_content  .tab_content .plan_content .unlimited{
    border-color: rgba(192, 0, 0, 1);
}

.Licenses_content  .tab_content .plan_content .one_job .plan_name{
    background-color: rgba(38, 33, 33, 1);
}

.Licenses_content  .tab_content .plan_content .unlimited .plan_name{
    background-color: rgba(192, 0, 0, 1);
}

.Licenses_content  .tab_content .plan_content .plan_content_wrap{
    padding:20px;
}

.Licenses_content  .tab_content .plan_content .plan .price_area{
    text-align: center;
    width:75%;
    margin:0 auto;
}

.Licenses_content  .tab_content .plan_content .plan .price_area div{
    display: flex;
    align-items: end;
}

.Licenses_content  .tab_content .plan_content .plan .price_area > div .sub{
    font-size: 18px;
}

.Licenses_content  .tab_content .plan_content .plan .price_area>div{
    margin:5px 0px;
}

.Licenses_content  .tab_content .plan_content .plan .price_area>div>.sub{
      width:35%;
      font-weight: 500;
}

.Licenses_content  .tab_content .plan_content .plan .price_area>div>.price{
      width:65%;
      justify-content:center;
      font-weight: 700;
}

.Licenses_content  .tab_content .plan_content .plan .price_area div .price .number{
    font-size: 32px;
    height:42px;
}

.Licenses_content  .tab_content .plan_content .one_job .price_area{
    color:rgba(38, 33, 33, 1);
}

.Licenses_content  .tab_content .plan_content .unlimited .price_area{
    color:rgba(192, 0, 0, 1);
}

.Licenses_content  .tab_content .plan_content .plan .merit{
    width:90%;
    margin:20px auto;
    list-style-type:none;
    padding:0px;
    font-size:16px;
    font-weight: 500;
    color:rgba(62, 57, 57, 1);
}

.Licenses_content  .tab_content .plan_content .plan .merit li:before{
    content:"";
    display: inline-block;
    width: 15px;
    height: 15px;
    vertical-align: middle;
    margin: 0 10px 3px 0;
}

.Licenses_content  .tab_content .plan_content .plan .merit li:not(.gray_out):before{
    background: url("../img/icon/check_mark.svg");
}

.Licenses_content  .tab_content .plan_content .plan .merit .gray_out:before{
    background: url("../img/icon/check_mark_gray.svg");
}

.Licenses_content .content .notice{
    font-size: 14px;
}

/* スマホ用 */
@media screen and (max-width: 820px) {
    .Licenses_content  h2{
       font-size: 24px;
    }

    .Licenses_content>div>.content{
        padding:50px 0px;
    }
    .Licenses_content  .tab_content .plan_content{
        flex-direction: column;
        gap:30px;
    }

    .Licenses_content  .license_tab {
        padding-bottom: 30px;
    }

    .Licenses_content  .license_tab .tab_item {
        font-size: 16px;
    }

    .Licenses_content  .tab_content .plan_content .plan{
        width:100%;
    }

    .Licenses_content  .tab_content .plan_content .plan_name{
        font-size: 16px;
        padding:15px 10px;
    }

    .Licenses_content  .tab_content .plan_content .plan_content_wrap{
        padding:10px;
    }

    .Licenses_content  .tab_content .plan_content .plan .price_area > div .sub{
        font-size: 16px;
    }

    .Licenses_content  .tab_content .plan_content .plan .price_area div .price .number{
        font-size: 28px;
        height:38px;
    }

    .Licenses_content  .tab_content .plan_content .plan .merit{
        width:80%;
        font-size:14px;
    }

    .Licenses_content .content .notice{
    font-size: 12px;
}
}


.Licenses_content .others{
    background-color: rgba(251, 250, 250, 1);
}

.Licenses_content .others .trial_license,
.Licenses_content .others .benchmark{
    margin-top:100px;
}

.Licenses_content .others .trial_license table{
    border-collapse: collapse;
    border-spacing: 0;
    border: solid 2px rgba(207, 206, 206, 1);
    width: 100%;
}

.Licenses_content .others .trial_license table td {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    border: solid 2px rgba(207, 206, 206, 1);
}

.Licenses_content .others .trial_license table .icon {
    width: 5%;
}

.Licenses_content .others .trial_license table .icon img {
    max-width: 40px;
    max-height: 40px;
}

.Licenses_content .others .trial_license table .text {
    padding: 0px 20px;
    width: 95%;
    text-align: left;
    font-size: 18px;
}

.Licenses_content .others .trial_license table .text b {
    font-weight: 600;
}

@media screen and (max-width: 820px) {
    .Licenses_content .others .trial_license table td{
        padding:10px;
    }

    .Licenses_content .others .trial_license table .icon {
        width: 7%;
        display: flex;
        align-items: center;
    }

    .Licenses_content .others .trial_license table .text {
        font-size: 14px;
        padding:10px;
    }

}

.Licenses_content .introduction .step{
    max-width:600px;
    margin:40px auto 0px;
    padding:0px;
}

.Licenses_content .introduction .step .box{
    border: solid 3px rgba(192, 0, 0, 1);
    background-color: #FFFFFF;
    border-radius: 20px;
    position: relative;
    min-height: 100px;
    padding:20px 0px;
    box-sizing: border-box;
    display:flex;
    flex-direction: column;
    justify-content:center;
}

.Licenses_content .introduction .step .box .number{
    font-family: "League Gothic", sans-serif;
    font-size:36px;
    color:rgba(192, 0, 0, 1);
    text-align: center;
    width:100px;
    position: absolute;
    transform: translateY(-50%);
    top:50%;
}

.Licenses_content .introduction .step .box .text{
    text-align: center;
}

.Licenses_content .introduction .step .box .text .name{
    font-size:20px;
    font-weight: 700;
}

.Licenses_content .introduction .step .box .text .detail{
    font-size:18px;
}

/* .Licenses_content .introduction .step .box .text .detail a{
    color:rgba(30, 115, 190, 1);
} */

.Licenses_content .introduction .step .triangle{
    margin:20px auto;
    width:25px;
    height:15px;
    background-color: rgba(192, 0, 0, 1);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.Licenses_content .introduction .step div.box:nth-of-type(1){
    border: solid 3px rgba(62, 57, 57, 1);
}

.Licenses_content .introduction .step div.box:nth-of-type(1)>.number{
    color:rgba(62, 57, 57, 1);
}

.Licenses_content .introduction .step div.triangle:nth-of-type(2){
    background-color: rgba(62, 57, 57, 1);
}

.Licenses_content .introduction .step div.box:nth-of-type(3){
    border: solid 3px rgba(94, 42, 42, 1);
}

.Licenses_content .introduction .step div.box:nth-of-type(3)>.number{
    color:rgba(94, 42, 42, 1);
}

.Licenses_content .introduction .step div.triangle:nth-of-type(4){
    background-color: rgba(94, 42, 42, 1);
}

.Licenses_content .introduction .step div.box:nth-of-type(5){
    border: solid 3px rgba(159, 14, 14, 1);
}

.Licenses_content .introduction .step div.box:nth-of-type(5)>.number{
    color:rgba(159, 14, 14, 1);
}

.Licenses_content .introduction .step div.triangle:nth-of-type(6){
    background-color: rgba(159, 14, 14, 1);
}

@media screen and (max-width: 820px) {

    .Licenses_content .introduction .step .box .number{
        width:60px;
    }

    .Licenses_content .introduction .step .box .text{
        padding:0px 40px 0px 60px;
    }

    .Licenses_content .introduction .step .box .text .name{
        font-size:18px;
    }

    .Licenses_content .introduction .step .box .text .detail{
        font-size:14px;
    }
}
/* ライセンス・導入形態ページ終了 */