
/*---------------------------
ページタイトル
---------------------------*/
#particles-js{ 
	z-index:-1;/*描画を一番下に*/
	width: 100%;
    height: 20vh;
	background-color:#141622;
    position: relative;
    display: block;
    text-align: center;
    
}

.page-explaining .page-title {
    color: whitesmoke;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    font-size: 2.3rem;
}


/*----------------------
3つの特徴
------------------------*/
.plan-detail .title {
    margin-top: 10px;
}
.plan-character {
    padding-bottom: 50px;
    position: relative;
    z-index: 0;
  
}
.plan-character ul {
    display: flex;
    justify-content: space-between;
    counter-reset: 0;
    flex-wrap: wrap;
    margin-top: 70px;
}
.plan-character li {
    background-color: rgba(216, 207, 207, 0.3);
    border-radius: max(20px, min(15px, calc((100vw - 10px - 100%) * 9999)));
    padding: 50px 25px 10px;
    position: relative;
    width: 31%;
    z-index: 0;
    box-shadow: 0 12px 12px 0 rgba(54, 54, 54, 0.3);
}
.character-image {
    width: 100%;
    bottom: 100%;
    left: 50%;
    margin-bottom: -10%;
    max-width: 72px;
    position: absolute;
    transform: translateX(-50%);
}
.character-image img {
    margin: 0;
    max-width: 100%;
    padding: 0;
    vertical-align: bottom;
    width: auto;
}
.character-ttl {
    border-bottom: 2px solid #5c0f80;
    color: #000000;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 20px;
    padding: 0 0 10px;
    position: relative;
    text-align: center;
}
.character-content p {
    font-size: 0.8rem;
    text-align: left;
}




/*---------------------------
各プランの詳細
---------------------------*/
.wrapper-question{
    width:100%;
    max-width: 1150px;
    margin:30px auto;
    background:#fefefe;
    border-radius: 5%;
  }
      
/*tabの形状*/
.tab{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    justify-content: space-around;
    border-bottom: 4px solid #ddd;
}
 
  .tab li a{
    display: block;
    background:#fefefe;
    margin:0 8px 0 0;
    padding:10px 20px;
    color: black;
    font-weight: bold;
  }
  /*liにactiveクラスがついた時の形状*/
  .tab li.active a{
    display: inline-block;
    background:#ddd;
  }
  
  
  /*エリアの表示非表示と形状*/
  .area {
    display: none;/*はじめは非表示*/
    opacity: 0;/*透過0*/
    background: #fefefe;
    padding:4px 20px;
    border-radius: 5%;
    text-align: center;
  }
  
  /*areaにis-activeというクラスがついた時の形状*/
  .area.is-active {
      display: block;/*表示*/
      animation-name: displayAnime;/*ふわっと表示させるためのアニメーション*/
      animation-duration: 1s;
      animation-fill-mode: forwards;
  }
  
  @keyframes displayAnime{
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
.area .plan-detail-ttl {
    font-size: 1.2rem;
    margin-top: 10px;
}
.area .plan-detail-ttl:after {
    background: #b451a4;
    border-radius: 30px;
    content: "";
    display: block;
    height: 3px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    width: 30px;
}
.area .plan-price {
    font-size: 1.1rem;
    font-weight: 900;
}
.area .plan-price span {
    color: #e91e63;
    font-size: 2rem
}
.area .plan-price-tax {
    font-size: 0.7rem;
    margin-top: 0;
    margin-bottom: 0;
}
.area .plan-price-online {
    font-size: 0.6rem;
    margin-top: 0;
}
.area .plan-price-tax:last-child {
    margin-bottom: 0;
}
.area .plan-price-year {
    background: linear-gradient(transparent 60%, #ffeb3b 60%);
    font-weight: bold;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    position: relative;
    width: fit-content;
}
.area .plan-price-year::after {
    aspect-ratio: 100/94;
    content: "";
    height: auto;
    left: 101%;
    position: absolute;
    top: -300%;
    width: 160px;
}
.area .comment-normal::after {
    /*プランごとに変更*/
    background: url(../img/coaching/point/normal-comment.svg) no-repeat 50% / contain; 
}
.area .comment-intensive::after {
    /*プランごとに変更*/
    background: url(../img/coaching/point/intensive-comment.svg) no-repeat 50% / contain; 
}
.area .comment-company::after {
    /*プランごとに変更*/
    background: url(../img/coaching/point/company-comment.svg) no-repeat 50% / contain; 
}
.area .plan-tag {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.area .plan-tag li {
    border: 2px solid;
    border-radius: 50px;
    color: #b451a4;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    margin-left: 7px;
    margin-right: 7px;
    padding: 3px 20px;
}
.area .plan-detail-table {
    background-color: rgba(216, 207, 207, 0.3);
    border-radius: 3%;
    z-index: 0;
    position: relative;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 20px;
}
.area .plan-detail-table::before {

    content: "";
    aspect-ratio: 125/150;
    height: auto;
    position: absolute;
    right: 3%;
    top: -200%;
    width: min(156px, 20vw);
    z-index: 50;
}

.plan-detail .works-btn a {
    color: white;
}


/*----------------------
service-content
------------------------*/
.service-content table {
    background: #fff;
    box-shadow: 0 12px 12px 0 rgba(54, 54, 54, 0.3);
    border-top: none;
    table-layout: fixed;
    width: 100%;
    border-radius: 2%;

    border-collapse: collapse;
    border-spacing: 0;
}
.service-content table tbody {
    display: table;
    width: 100%;
}
.service-content tr {
    display: table-row;
}
.service-content table .service-content-ttl {
    background: #dddddd5b;
    font-size: 16px;
    text-align: center;
}
.service-content th.th {
    width: 280px; /*１列名の調整*/
}
.service-content th {
    border-bottom: 1px solid #ddd;
    border-right: 1px solid #ddd;
    color: black;
    font-weight: bold;
    padding: 10px 20px;
    display: table-cell;
}
.service-content td {
    background: #fff;
    border-bottom: 1px solid #ddd;
    border-right: 1px solid #ddd;
    text-align: center;
    vertical-align: middle;
}
.service-content td p {
    font-size: 0.8rem;
    margin: 0;
    font-weight: bold;
}
.service-content table .service-price {
    color: #2c3e57;
    font-size: 13px;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 0;
}
.service-content table .service-price span {
    color: #e91e63;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 0 3px;
}
.service-content table .service-price-tax {
    font-size: 0.6rem;
}
.icon-hover-area {
    position: relative;
    cursor: help;
}
.icon-area-box {
    display: flex;
    align-items: center;
    font-weight: bold;
    position: relative;
    flex-wrap: w;
}
.icon-area-box img {
    max-height: 25px;
    max-width: 35px;
    padding: 0 10px 0 0;
    vertical-align: bottom;
}
.icon-hover-area-desc {
    font-size: 0.7rem;
    color: #000000;
    text-align: left;
}

/*-------------------------
note
-------------------------*/
#note-box {
    font-size: 0.8rem;
    margin-top: 30px;
    width: 100%;
  }
  #note-box .note-box-title {
      font-size: 0.8rem;
      text-align: center;
      margin-bottom: 10px;
  }
  .note-box-info {
    -webkit-overflow-scrolling: touch;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    display: -webkit-box;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    width: 100%;
    height: 200px;
    margin: 0 40px 0 0;
    overflow-y: scroll;
    box-shadow: 0 0 0 1px #BABABA, 0 0 0 8px #E8E8E8;
  }
  @media (min-width:768px) {
    .note-box-info {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      flex-direction: row;
      flex-wrap: wrap;
    }
  }
  .note-box-info dd,
  .note-box-info dt {
    box-sizing: border-box;
    width: 100%;
    padding-bottom: 8px;
    padding-left: 2px;
  }
  @media (min-width:768px) {
    .note-box-info dt {
      width: 11.5em;
      margin-bottom: .5em;
      border-bottom: 1px dotted #343a40
    }
  }
  .note-box-info dt:first-of-type {
    padding-top: .5em;
    border-top: 1px dotted #000000
  }
  
  .note-box-info dt span {
    box-sizing: border-box;
    display: inline-block;
    width: 7em;
    margin-right: .5em;
    padding: 0 .5em ;
    background-color: #141622;
    color: #fff;
    line-height: 1.75;
    text-align: center;
    border-radius: 10%;
    margin-left: 10px;
  }
  .note-box-info time {
    color: #000000;
    font-weight: bold;
    opacity: 0.7;
    font-size: 0.6rem;
  }
  .note-box-info dd {
    margin-left: 0;
    margin-bottom: .5em;
    border-bottom: 1px dotted #343a40;
    }
  .note-box-info a {
    color: #000000;
  }
  @media (min-width:768px) {
    .note-box-info dd {
      width: calc(100% - 12.5em)
    }
    .note-box-info dd:first-of-type {
      padding-top: .5em;
      border-top: 1px dotted #343a40;
    }
  }
  .note-box-info dd:nth-of-type(-n+3) {
    position: relative;
  }

.service-content .works-btn {
    text-align: center;
}
.service-content .works-btn a {
    color: white;
}



 /*---------------------------------------
タブレット対応
-------------------------------------*/
@media screen and (max-width: 930px) {
    #particles-js {
      height: 15vh;
    }
    #footer {
      margin-top: 20px;
    }

    /*プランの料金*/
    .tab li a {
        font-size: 1.3rem;
    }
    .area .plan-price-year::after {
        top: -500%;
        left: 110%;
    }
    .note-box-info dd {
        margin-left: 11px;
        padding-bottom: 5px;
    }
    .note-box-info dt {
        padding-bottom: 3px;
    }
    /*各プランの内容*/
    .icon-hover-area-desc {
        font-size: 0.8rem;
    }

  }
  
  
  
  /*---------------------------------------
  スマホ対応
  -------------------------------------*/
  @media screen and (max-width: 610px) {

    /*6つの特徴*/
    .plan-character {
        padding-bottom: 0;
    }
    .plan-character ul {
        flex-direction: column;
        align-items: center;
        margin-top: 30px;
    }
    .plan-character li {
        width: 100%;
        max-width: 300px;
        margin-bottom: 55px;
    }
    .character-image img {
        max-width: 70%;
    }
    .character-ttl {
        font-size: 1.3rem;
    }
    .character-content p,.area .plan-detail-table {
        font-size: 1rem;
        text-align: left;
    }

/*プランの詳細*/
    .area .plan-tag li {
        font-size: 0.7rem;
    }

    .area .plan-price-year::after {
        display: none;
    }
    
  }
  