
/*---------------------------
ページタイトル
---------------------------*/
#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;
}



/*----------------------
６つの特徴
------------------------*/

.plan-character {
    padding-bottom: 100px;
    position: relative;
    z-index: 0;
    margin-bottom: -160px;
}
.plan-character .title {
    margin-top: 30px;
}
.plan-character ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 70px;
}
.plan-character li {
    background: #fff;
    border-radius: max(20px, min(15px, calc((100vw - 10px - 100%) * 9999)));
    margin-bottom: 70px;
    padding: 50px 25px 10px;
    position: relative;
    width: 32%;
    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%);
    text-align: center;
}
.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: 1.1rem;
    font-weight: 900;
    margin-bottom: 20px;
    padding: 0 0 10px;
    position: relative;
    text-align: center;
}
.character-content p {
    font-size: 0.8rem;
}




/*---------------------------
各プランの詳細
---------------------------*/
.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;
    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;
}

.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;
}
.comment-simple::after {
    /*シンプルプランの吹き出し*/
    background: url(../img/plan/price/simple-comment.svg) no-repeat 50% / contain; /*変更必須*/
}
.comment-standard::after {
    /*シンプルプランの吹き出し*/
    background: url(../img/plan/price/standard-comment.svg) no-repeat 50% / contain; /*変更必須*/
}
.comment-company::after {
    /*シンプルプランの吹き出し*/
    background: url(../img/plan/price/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;
}

/*----------------------
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 table .service-content-ttl p {
    color: #2c3e57;
    font-size: 13px;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 0;
}
.service-content table .service-content-ttl p span {
    color: #e91e63;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 0 3px;
}
.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.6rem;
    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;
}

/*----------------------
flow
------------------------*/
.wrapper-flow {
    margin-left: auto;
    margin-right: auto;
    max-width: 1240px;
    padding: 0 20px;
}

.flowchart {
    position: relative;
}
.flow-flowchart-bg {
    background: linear-gradient(45deg, #540d5a 0%, #68046b 25%, #900d9c 45%, #a12dbee3 65%, #757075 100%);
    content: "";
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#004bb1', endColorstr='#00beff', GradientType=1);
    height: 116px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}
.flow-flowchart-bg::before {
    border-color: transparent #ffffffda transparent transparent;
    border-style: solid;
    border-width: 0 58px 58px 0;
    content: "";
    height: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
}
.flow-flowchart-bg::after {
    border-color: transparent transparent #ffffffda transparent;
    border-style: solid;
    border-width: 0 0 58px 58px;
    bottom: 0;
    content: "";
    height: 0;
    position: absolute;
    right: 0;
    width: 0;
}

.flowchart ul {
    counter-reset: number 0;
    justify-content: space-between;
    padding: 70px 65px 0 20px;
    position: relative;
    z-index: 1;
}

.flowchart .flex-center-center {
    display: flex;
    align-items: center;
}
.flowchart li {
    position: relative;
    width: calc(100% / 5 - 30px);
  
}
.flowchart li::before {
    bottom: 100%;
    color: #fff;
    content: "";
    content: "STEP" counter(number);
    counter-increment: number 1;
    left: 30px;
    font-weight: bold;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    margin-bottom: 17px;
    position: absolute;
}
.flowchart li::after {
    background: url(../img/flow_arrow.svg) no-repeat 100% 0 / contain;
    bottom: 100%;
    content: "";
    height: 121px;
    margin-bottom: -45px;
    margin-right: -45px;
    position: absolute;
    right: 0;
    width: 63px;
}
.fadeup {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    background: #fff;
    border-radius: max(10px, min(15px, calc((100vw - 10px - 100%) * 9999)));
    box-shadow: 0 12px 12px 0 rgba(40, 47, 60, 0.3);
    padding: 40px 30px;
    width: 100%;
    transition: opacity 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s, transform 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.6s, -webkit-transform 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
}
.fadeup-image {
    text-align: center;
}
.fadeup-image img {
    margin: 0;
    max-width: 80%;
    padding: 0;
    vertical-align: bottom;
    width: auto;
}
.flow-flowchart-ttl {
    font-size: 0.7rem;
    font-weight: bold;
    position: relative;
    text-align: center;
    margin-top: 20px;
}
.flow-flowchart-ttl::after {
    height: 5px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 7px;
    width: 50px;
    background: linear-gradient(45deg, #540d5a 0%, #68046b 25%, #900d9c 45%, #a12dbee3 65%, #757075 100%);
    content: "";
    display: block;
}
.flow .works-btn {
    text-align: center;
}
.flow .works-btn a {
    color: whitesmoke;
}




  /*---------------------------------------
タブレット対応
-------------------------------------*/
@media screen and (max-width: 930px) {
    #particles-js {
      height: 15vh;
    }
    #footer {
      margin-top: 20px;
    }
    .flow {
        display: none;
    }
    /*プランの料金*/
    .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;
        margin-bottom: 0;
    }
    .plan-character ul {
        flex-direction: column;
        align-items: center;
        margin-top: 30px;
    }
    .plan-character li {
        width: 100%;
        max-width: 450px;
        margin-bottom: 40px;
    }
    .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;
    }
.tab {
    display: block;
    text-align: center;   
}
.tab li.active a {
    display: block;
}

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

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