/* page-heading
--------------------------------*/
.page-heading{
    color: #fff;
    line-height: 1.4;
    background: #1959c2;
}
.page-heading__inner{
    max-width: 1100px;
    height: 380px;
    margin: auto;
    position: relative;
}
.page-heading__eng{
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: 'Big Shoulders Display', cursive;
    padding-top: 100px;
}
.page-heading__title{
    font-size: 42px;
    margin: 10px 0;
}
.page-heading__text{
    font-size: 18px;
}
.page-heading__img{
    position: absolute;
    right: 0;
    bottom: -20px;
}

@media only screen and (max-width: 767px){

    .page-heading{
        padding-top: 60px;
    }
    .page-heading__inner{
        padding: 30px 20px;
        height: auto;
    }
    .page-heading__eng{
        padding: 0;
        font-size: 14px;
    }
    .page-heading__title{
        font-size: 22px;
        margin: 8px 0;
    }
    .page-heading__text{
        font-size: 13px;
    }
    .page-heading__img{
        width: 30%;
        bottom: auto;
        top: 30px;
        right: 20px;
    }
}

/*====================================
    news
====================================*/
.news__list{
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #ddd;
}
.news__item{
    display: flex;
    border-top: 1px solid #ddd;
}
.news__item_wrap{
    position: relative;
    display: flex;
    width: 100%;
    padding: 20px 40px 20px 15px;
    text-decoration: none;
    transition: 0.5s;
}
.news__item_wrap::after{
    content: '\f105';
    font-size: 1.2em;
    font-family: 'FontAwesome';
    color: #1959c2;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    margin: auto;
    width: 10px;
    height: 16px;
    line-height: 1;
    transition: 0.5s;
}
@media only screen and (min-width: 768px){
    .news__item_wrap:hover{
        background: rgb(0 0 0 / 2%);
    }
    .news__item_wrap:hover::after{
        right: 8px;
    }
}
.news__item-head{
    width: 220px;
}
.news__item-cate{
    display: inline-block;
    text-align: center;
    color: #1959c2;
    font-size: 12px;
    min-width: 110px;
    padding: 4px 0;
    margin-left: 12px;
    background: #eee;
    border-radius: 50px;
}
.news__item-title{
    flex: 1;
    margin: 0;
    color: #333;
    font-weight: 500;
}

@media only screen and (max-width: 767px){
    .news__item_wrap{
        display: block;
        padding: 18px 25px 18px 0;
    }
    .news__item_wrap::after{
        right: 5px;
    }
    .news__item-head{
        width: 100%;
        margin-bottom: 5px;
        font-size: .9em;
    }
    .news__item-cate{
        font-size: 11px;
        padding: 2px 4px;
        margin-left: 8px;
    }
}

/*====================================
    case
====================================*/
.case__list{
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    margin: 40px 0;
}
@media screen and (min-width: 768px) {
  .case__list{
        justify-content: space-between;
    }
}
.case__item{
    position: relative;
    width: 32%;
    border-radius: 10px;
    border: 1px solid #1959c2;
    padding-bottom: 10px;
}
.case__item.contents_yes{
    padding-bottom: 70px;
}
.case__item_head{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    text-align: center;
    padding: 20px;
    border-radius: 8px 8px 0 0;
    background: #1959c2;
}
@media screen and (min-width: 768px) {
    .case__item_head{
        min-height: 160px;
    }
}
.case__item-num{
    display: inline-block;
    position: absolute;
    top: -12px;
    left: 50%;
    width: 150px;
    height: 28px;
    line-height: 28px;
    margin-left: -75px;
    color: #fff;
    font-size: 13px;
    background: #ff4081;
    border-radius: 50px;
}
.case__item-icon{
    width: 20%;
}
.case__item-icon .thumb{
    position: relative;
    overflow: hidden;
    height: 0;
    padding-top: 100%;
    border-radius: 100%;
}
.case__item-icon .thumb img{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    object-fit:cover;
}
.case__item-icon p{
    font-size: 12px;
}
.case__item-title{
    text-align: left;
    font-size: 16px;
    line-height: 1.5;
    width: 75%;
}
.case__item_body{
    font-size: 14px;
    padding: 25px;
}
.case__benefits{
    list-style: none;
}
@media screen and (min-width: 768px) {
    .case__benefits{
        min-height: 100px;
    }
}
.case__benefits-text{
    margin: 6px 0;
    padding-left: 25px;
    line-height: 1.4;
    background: url(../img/hp/icon_check.png) no-repeat left 3px;
    background-size: 18px;
}
.case__plan{
    display: flex;
    background: #f3f3f3;
    border-radius: 6px;
    overflow: hidden;
    margin-top: 4px;
}
.case__benefits+.case__plan{
    margin-top: 25px;
}
.case__plan-tit{
    color: #fff;
    width: 30%;
    padding: 5px 8px;
    background: #5ec6e3;
    display: flex;
    align-items: center;
}
.case__plan-conts{
    width: 70%;
    padding: 5px 8px;
}
.case__plan-conts a{
    color: #1959c2;
    text-decoration: underline;
}
.case__item-btn{
    position: absolute;
    width: 220px;
    left: 0;
    right: 0;
    bottom: 30px;
    margin: auto;
    font-size: 14px;
}
.case__item-btn a{
    height: 40px;
    line-height: 40px;
}

@media only screen and (max-width: 767px){
    .case.wrap{
        margin-left: 0;
        margin-right: 0;
        overflow: hidden;
        padding: 40px 0 60px;
    }
    .case .sectTit-messages{
        margin-left: 25px;
        margin-right: 25px;
    }
    .case__list{
        margin-bottom: 50px;
    }
    .case__item{
        width: 95%!important;
        margin: 0 8px 30px;
    }
    .case__item_head{
        padding: 20px 10px 15px;
    }
    .case__item-num{
        font-size: 11px;
        height: 24px;
      line-height: 24px
    }
    .case__item-icon{
        width: 25%;
        max-width: 90px;
    }
    .case__item-icon span{
        font-size: 11px;
    }
    .case__item-title{
        font-size: 13px;
    }
    .case__item-title{
        width: auto;
        flex: 1;
        padding-left: 5%;
    }
    .case__item_body{
        font-size: 13px;
        padding: 15px;
    }
    .case__plan{
        font-size: 12px;
    }
    .case__benefits+.case__plan {
      margin-top: 15px;
    }
    .case__plan-tit{
        width: 80px;
    }
    .case__item-btn{
        width: 80%;
        font-size: 13px;
    }

}


/*====================================
    lineup
====================================*/
.lineup__conts{
    display: flex;
    position: relative;
}
.lineup__conts::after{
    position: absolute;
    top: 50%;
    left: 50%;
    content: "&";
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 100%;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    margin: 0 0 0 -30px;
    background: #1959c2;
}
@media screen and (min-width: 768px) {
  .lineup__conts{
        justify-content: space-between;
    }
}
.lineup__item{
    width: 48.5%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 3px 20px rgb(25 89 194 / 20%);
}
.lineup__item-title{
    position: relative;
    text-align: center;
    color: #fff;
    font-size: 22px;
    margin: 0;
    padding: 15px 0;
    background: #1959c2;
    border-radius: 10px 10px 0 0;
}
.lineup__item-title:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-top: 15px solid #1959c2;
}
.lineup__itembox{
    padding: 30px;
    box-sizing: border-box;
}
.lineup__itembox-midashi{
    color: #1959c2;
    font-weight: 700;
    font-size: 1.2em;
    margin-bottom: 1.4rem;
    padding-bottom: .5em;
  border-bottom: 1px solid rgba(25,89,194, .5);
}
.lineup__alc+.lineup__itembox-midashi{
  margin-top: -1rem;
}
.lineup__alc{
    display: flex;
    margin-bottom: 30px;
    padding: 0 20px;
}
.lineup__alc.last{
  margin-bottom: 0;
}
.lineup__alc-badge{
    color: #1959c2;
    padding: 0px 10px;
    display: inline-block;
    border: 1px solid #1959c2;
}
.lineup__alc-img{
    width: 23%;
}
.lineup__alc-text{
    flex: 1;
    padding-left: 4.2%;
}
.lineup__alc-name{
    font-weight: 700;
    font-size: 18px;
    margin: 10px 0 6px;
}
.lineup__option{
    text-align: center;
    position: relative;
    background: #edf8fc;
    border-radius: 10px;
    padding: 0 30px 20px;
}
.lineup__option-tit{
    color: #1959c2;
    position: relative;
    top: -10px;
    display: inline-block;
    margin: auto;
    padding: 2px 15px;
    background: #fff;
    border-radius: 50px;
    border: 1px solid #1959c2;
}
.lineup__option-tit span{
    display: inline-block;
    padding-left: .5em;
}
.lineup__optionbox{
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    text-align: left;
    margin-top: 10px;
}
.lineup__option-img{
    width: 16%;
}
.lineup__option-text{
    width: 78%;
    margin: 0;
}
.lineup__option-text p{
    margin: 0;
}
.lineup__option-name{
    color: #1959c2;
    font-weight: 700;
}

@media only screen and (max-width: 767px){
    .lineup__conts{
        display: block;
    }
    .lineup__conts::after{
      display: none;
    }
    .lineup__item{
        width: 100%;
        position: relative;
    }
    .lineup__item+.lineup__item{
        margin-top: 60px;
    }
    .lineup__item+.lineup__item::before{
        position: absolute;
        top: -52px;
        left: 50%;
        content: "&";
        font-size: 25px;
        width: 45px;
        height: 45px;
        line-height: 45px;
        border-radius: 100%;
        color: #fff;
        font-weight: bold;
        text-align: center;
        margin: 0 0 0 -22px;
        background: #1959c2;
        display: block;
    }
    .lineup__item-title{
        font-size: 16px;
        font-weight: 600;
        padding: 12px 0;
    }
    .lineup__item-title:before{
        margin-left: -12px;
        border: 12px solid transparent;
      border-top: 12px solid #1959c2;
    }
    .lineup__itembox{
        font-size: 12px;
    }
    .lineup__alc{
        padding: 0;
        justify-content: space-between;
    }
    .lineup__alc.last{
        margin-bottom: 0;
    }
    .lineup__alc-img{
        width: 26%;
    }
    .lineup__alc-badge{
        font-size: 12px;
        font-weight: 600;
    }
    .lineup__alc-name{
        font-size: 14px;
        margin: 10px 0 6px;
    }
    .lineup__option{
        padding: 0 20px 20px;
    }
    .lineup__option-tit{
        line-height: 1.3;
        font-weight: 600;
        font-size: 11px;
        padding: 4px 30px;
    }
    .lineup__option-tit span{
        display: block;
        padding-left: 0;
    }
    .lineup__optionbox{
        font-size: 12px;
    }
    .lineup__option-tit+.lineup__optionbox{
        margin-top: 0;
    }
    .lineup__option-img{
        width: 20%;
    }
    .lineup__option-text{
        width: 74%;
    }
}


/*====================================
  ex-plan
====================================*/
.ex-plan{
        padding-bottom: 100px;
    }
    .ex-plan__wrap{
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 30px;
    }
    .ex-plan__plus{
      color: #1959c2;
      font-size: 40px;
      font-weight: bold; 
    }
/*
    .ex-plan__wrap::after{
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        width: 40px;
        height: 40px;
        color: #1959c2;
        font-size: 40px;
        line-height: 1;
        text-align: center;
        font-family: "Font Awesome 5 Free"; 
        font-weight: bold; 
        content: "\2b";
    }*/
    .ex-plan__item{
        width: 47%;
        text-align: center;
        border-radius: 10px;
        padding: 25px 40px 30px;
        border: 1px solid #1959c2;
    }
    .ex-plan__item-tit{
        color: #1959c2;
        font-size: 25px;
        font-weight: 700;
    }
    .ex-plan__item-text{
        border-radius: 10px;
        padding: 20px 1px;
        margin-top: 15px;
        min-height: 100px;
        background: #fef1ea;
        display: flex;
        align-items: center;
        justify-content: center;

    }
    .ex-plan__item-text span{
        color: #1959c2;
        font-size: 18px;
        font-weight: 700;
        display: block;
    }
    .ex-plan__sub-tit{
        font-weight: 700;
        text-align: center;
        font-size: 20px;
        margin: 40px 0 20px;
    }
    .ex-plan__actins{
        display: flex;
        max-width: 680px;
        margin: auto;
    }

@media only screen and (max-width: 767px){
    
    .ex-plan{
      padding: 40px 0 60px;
    }
    .ex-plan__wrap{
        display: block;
    }
    .ex-plan__plus{
      font-size: 35px;
      text-align: center;
    }
    .ex-plan__item{
        width: 100%;
        padding: 20px;
    }
    .ex-plan__item+.ex-plan__item{
        margin-top: 40px;
    }
    .ex-plan__item-tit{
        font-size: 17px;
    }
    .ex-plan__item-text{
        padding: 15px;
        font-size: 13px;
        min-height: inherit;
    }
    .ex-plan__item-text span{
        font-size: 14px;
    }
    .ex-plan__sub-tit{
        font-size: 15px;
    }
    .ex-plan__actins{
        width: 90%;
        display: block;
    }
    .ex-plan__actins-btn{
        margin-top: 10px;
    }
    .ex-plan__actins .btn_pt-white a::after{
        transform:rotate(90deg);
    }
}

/*====================================
    plan
====================================*/
.plan-tit{
  text-align: center;
  font-size: 18px;
  margin-bottom: .5em;
}
.plan_sectTit{
    color: #1959c2;
}
.plan__wrap{
    display: flex;
    justify-content: space-between;
}
.plan__item{
    position: relative;
    width: 24%;
    text-align: center;
    border: 3px solid #ddd;
    border-radius: 10px;
    padding: 30px 25px;
    background: #fff;
    /*box-shadow: 0 4px 12px 4px rgb(0 0 0 / 6%);*/
}
.plan__item.recommend::before{
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    margin: auto;
    content: "おすすめ！";
    display: block;
    width: 110px;
    padding: 5px 0;
    color: #fff;
    text-align: center;
    line-height: 1;
    font-weight: bold;
    border-radius: 50px;
}
.plan__item.advance.recommend::before{
    background: #ed333c;
}
.plan__item.ex.recommend::before{
    background: #1d9bbf;
}
.plan__item.advance.recommend{
    border: 4px solid #ed333c;
}
.plan__item.ex.recommend{
  border: 4px solid #1d9bbf;
}
.plan__item-name{
    font-size: 14px;
    line-height: 1.3;
}
.plan__item-name span{
    display: block;
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 4px;
}
.plan__item-tit{
    font-weight: 700;
    font-size: 14px;
    border-radius: 20px;
    padding: 4px 20px;
    display: inline-block;
    background: #fef1ea;
    margin: 15px 0;
}
.plan__item-point{
  font-size: .9em;
  margin: 2px 0;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .plan__item-point{
    min-height: 68px;
  }
}
/*
@media screen and (min-width: 768px) {
    .plan__item-list{
        min-height: 90px;
    }
}
.plan__item-list li{
    padding-left: 1.5em;
    margin: 2px 0;
    font-size: .9em;
    text-align: left;
    background: url(../img/hp/icon_check.png) no-repeat left 5px;
    background-size: 18px;
}
*/
.advance .plan__item-name{
    color: #ed333c;
}
.normal .plan__item-name{
    color: #f48c40;
}
.light .plan__item-name{
    color: #56b975;
}
.ex .plan__item-name{
  color: #1d9bbf;
}
.plan__figure{
    margin: 70px 0 0px;
}
.plan__info{
    font-size: 14px;
    margin-top: 1%;
    padding: 5% 0;
}
.plan__info-list{
    width: 100%;
    display: flex;
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
}
.plan__info-list:first-child{
    border-top: 1px solid #ddd;
}
.plan__info-list dt{
    text-align: left;
}
.plan__info-list dt::after{
  content: "：";
}
.plan__info-list dd{
    text-align: left;
}

.plan__btn{
    margin-top: 60px;
}
.plan__figure+.btn+.sectTit-sub{
    margin-top: 60px;
}

@media only screen and (max-width: 767px){
    .plan .sectTit-sub{
        margin: -10px 0 15px;
    }
    .plan__wrap{
        display: block;
    }
    .plan__item{
        width: 100%;
        align-items: center;
        padding: 15px 20px;
    }
    .plan__item{
        margin-top: 18px;
    }
    .plan__item-name span{
        font-size: 20px;
    }
    .plan__item-name{
        width: 38%;
        font-size: 11px;
        white-space: nowrap;
    }
    .plan__item-box{
        padding-left: 15px;
    }
    .plan__item-tit{
        font-size: 12px;
        padding: 4px 0;
        margin: 0 0 5px;
        width: 100%;
    }
    .plan__item-list li{
        font-size: 12px;
        line-height: 1.3;
        background-size: 14px;
        background-position: left 3px;;
        margin-left: .5em;
    }
    .plan__info{
        width: 100%;
        font-size: 12px;
        margin-top: 2%;
        padding: 3% 5%;
    }
    .plan__figure{
        margin: 30px 0 10px;
    }
    .plan__btn{
        margin-top: 30px;
    }
    .plan__figure+.btn+.sectTit-sub{
        line-height: 1.3;
    }
}

/*====================================
  simulator
====================================*/
.simulator{
    width: 90%;
    text-align: center;
    border: 6px solid #d4e1ec;
    border-radius: 10px;
    padding: 20px 2px;
    background: #fff;
    margin: 0 auto;
}

.simulator span{
    color: #1959c2;
    font-size: 1.2em;
    font-weight: 700;
    display: block;
}

.simulator__btn {
    margin-top: 20px;
}

.simulator__return {
    margin-top: 22px;
    text-decoration: underline;
}

.simulator-answer {
    width: 400px;
    margin: 10px auto;
}

.simulator-answer a{
	font-size: 18px;
	display: block;
	padding: 15px 0;
  background: #edf8fc;
  border: 1px solid #ddd;
  border-radius: 50px;
  box-shadow: 0 3px 0 #ccd4e0;
  transition: .3s;
}
.simulator-answer a:hover {
	width: 100%;
	color: #fff;
  font-weight: 700;
  background: #1da9d0;
  border: 1px solid #1da9d0;
  box-shadow: none;
}

@media only screen and (max-width: 767px){
    .simulator{
        width: 96%;
        padding: 20px 15px;
        font-size: 13px;
    }

    .simulator__btn {
        width: 96%;
    }
    
    .simulator-answer {
        width: 100%;
    }

    .simulator-answer a {
        font-size: 14px;
        line-height: 1.4;
    }
}

/*====================================
  footer_info
====================================*/
.footer_info{
    padding: 80px 0;
    text-align: center;
    background: rgb(25,167,207);
    background: linear-gradient(135deg, rgba(25,167,207,1) 0%, rgba(74,191,224,1) 100%);
}
.footer_info-logo{
    width: 260px;
    margin: 10px auto 35px;
}
.footer_info-logo span{
    color: #fff;
    margin-bottom: 8px;
    display: block;
}
.footer_actions{
    display: flex;
    justify-content: space-between;
    max-width: 880px;
    margin: auto;
}
.footer_actions-btn{
    width: 32%;
}
.btn_chirashi{
    color: #1faad1;
}
.btn_chirashi a{
    background: #fff;
}

@media only screen and (max-width: 767px){

    .footer_info{
        padding: 50px 0;
    }
    .footer_info-img{
        width: 70%;
        margin: auto;
    }
    .footer_info-logo{
        width: 100%;
        margin: 10px auto 15px;
    }
    .footer_info-logo span{
        font-size: 11px;
        margin-bottom: 0;
    }
    .footer_info-logo img{
        width: 48%;
        max-width: 180px;
    }
    .footer_actions{
        display: block;
        width: 70%;
    }
    .footer_actions-btn{
        width: 100%;
        margin-top: 10px;
        font-size: 13px;
    }
    .footer_actions-btn a{
        height: 46px;
      line-height: 46px;
    }
    .footer_actions-btn a i{
        font-size: 16px;
    }

}

/*====================================
  price-table
====================================*/
.price-item{
  margin: 60px 0;
}
.price-item__name{
  margin-bottom: 10px;
  text-align: center;
  font-weight: 700;
  font-size: 22px;
}
.page-plan .price-item__name{
  font-size: 24px;
}
.color_light{
  color: #56B975;
}
.bg_light{
  background:rgba(86,185,117,0.1);
}
.color_normal{
  color: #F48C40;
}
.bg_normal{
  background:rgba(244,140,64,0.1);
}
.color_advance,
.text_red{
  color: #ED333C;
}
.bg_advance{
  background:rgba(237,51,60,0.1);
}
.color_ex{
  color: #1d9bbf;
}
.bg_ex{
  background:rgba(25,167,207,0.1);
}

.price-table{
  padding-top: 25px;
}
.price-table table{
  width: 100%;
}
.price-table table th,
.price-table table td{
  vertical-align: middle;
  padding: 12px 15px;
  border: 1px solid #ddd;
  font-size: 1.1em;
}
.price-table table th{
  width: 16%;
  text-align: center;
  background: #f3f3f3;
}
.price-table table td{
  width: 20%;
  text-align: center;
}
.price-table table .recommend{
  width: 24%;
  position: relative;
}
.price-table table .recommend::before{
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  margin: auto;
  width: 90px;
  content: "おすすめ！";
  font-size: 13px;
  color: #fff;
  display: inline-block;
  padding: 5px 0;
  line-height: 1;
  border-radius: 50px;
  background: #ED333C;
}
.price-table table td span.kome{
  font-size: .85em;
}
.price-table table+p{
  margin-top: 10px;
}
.price-table .upgrade{
  position: relative;
}
.price-table .upgrade_icon{
  position: absolute;
  top: -25px;
  right: -63px;
  width: 120px;
  color: #1959c2;
  padding-top: 32px;
  /* height: 57px; */
  line-height: 1.2;
  font-size: 13px;
  font-weight: bold;
  background: url(../img/hp/upgrade.png) no-repeat center top;
  background-size: 60% auto;
}

.plan_name td{
  vertical-align: top!important;
}

.plan_name-tit{
  font-weight: 900;
  font-size: 1.35em;
  padding: 10px 5px 5px;
}
.plan_name-text{
  font-size: 12px;
  text-align: left;
  padding: 0 5px 5px 5px;
}
.plan_name span{
  display: block;
}

.plan_price{
  color: #ed333c;
  text-align: center;
  font-weight: 900;
}
.plan_price span{
  font-size: 1.4em;
}
.plan_price_tax{
  font-size: 14px;
  display: block;
}
@media only screen and (max-width: 767px){
  .price-item {
    margin: 45px 0;
  }
  .page-plan .price-item{
    margin: 0;
  }
  .page-plan .price-item+.price-item{
    margin-top: 40px;
  }
  .price-item__name{
    font-size: 18px;
    margin-bottom: 0;
  }
  .page-plan .price-item__name{
    font-size: 18px;
    margin-bottom: 0;
  }
  .scloll-table{
    overflow-x: scroll;
  }
  .price-table table{
    min-width: 680px;
    line-height: 1.4;
  }
  .price-table table th,
  .price-table table td{
    font-size: 13px;
    padding: 8px 10px;
  }
  .price-table table .recommend::before{
    width: 70px;
    font-size: 12px;
    padding: 4px 0;
  }
  .price-table .upgrade_icon{
    top: -20px;
    font-size: 12px;
    padding-top: 28px;
    background-size: 46% auto;
  }
  
  .plan_name-tit{
    padding: 20px 0 15px;
    font-size: 1.25em;
  }
  .plan_name-text{
    display: none;
  }
  .plan_price span {
    font-size: 1.3em;
  }
}

/*====================================
    webinar
====================================*/
.webinar{
   position: relative;
}
.webinar::after{
   position: absolute;
   left: 0;
   top: 15rem;
   z-index: -1;
   content: "";
   display: block;
   width: 100%;
   height: 100%;
   background: #eceff6;
}
.webinar__list{
   display: flex;
   align-items: stretch;
   flex-wrap: wrap;
}
.webinar__item{
   width: 31%;
   margin-right: 3.5%;
   background: #fff;
   border-radius: .8rem;
   overflow: hidden;
   background: #fff;
   box-shadow: 0px 6px 10px rgb(0 0 0 / 10%);
}
.webinar__item a{
   display: flex;
   flex-direction: column;
   height: 100%;
}
.webinar__item_thumbnail{
   display: block;
   height: 195px;
   overflow: hidden;
}
.webinar__item_thumbnail img{
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform .6s ease;
}
.webinar__item-title{
   font-weight: 700;
   font-size: 1.1em;
   text-decoration: underline;
   padding: 1.5rem 1.8rem .5rem;
}
.webinar__item-content{
   color: #333;
   font-size: .9em;
   padding: 0 1.8rem 1.5rem;
}
.webinar__item-btn{
   border-top: 1px solid #ddd;
   margin-top: auto;
   padding: 1rem 0;
   color: #1a59c2;
   font-weight: 700;
   text-align: center;
   transition: transform .6s ease;
}
.webinar__item-btn i{
   margin-right: .5rem;
}
@media print, screen and (min-width: 768px) {
   .webinar__item{
      margin-bottom: 2rem;
   }
   .webinar__item:nth-of-type(3n){
      margin-right: 0;
   }
}
@media (hover: hover) {
   a:hover .webinar__item_thumbnail img{
      transform: scale(1.1);
   }
   a:hover .webinar__item-title{
      text-decoration: none;
   }
}
@media only screen and (max-width: 767px){
   .webinar__list{
      justify-content: space-between;
   }
   .webinar__item{
      width: 48%;
      margin-right: 0;
      margin-bottom: 4%;
   }
   .webinar__item_thumbnail{
      height: 25vw;
   }
}
@media only screen and (max-width: 500px){
   .webinar__list{
      display: block;
   }
   .webinar__item{
      width: 100%;
      margin-bottom: 8%;
   }
   .webinar__item_thumbnail{
      height: 47vw;
   }
}