
/*---------------------------
各プランの詳細
---------------------------*/
#writing, #create{
    width: 100%;
}
.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:rgba(40, 40, 40, 0.708);
    color: white;
  }
  
  
  /*エリアの表示非表示と形状*/
  .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: #000000;
    border-radius: 30px;
    content: "";
    display: block;
    height: 3px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    width: 30px;
}
.area .plan-price {
    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%, #90e1ff 60%);
    font-weight: bold;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    position: relative;
    width: fit-content;
}
.area .plan-tag {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.area .plan-tag li {
    border: 2px solid;
    border-radius: 10px;
    color: #777777;
    font-size: 0.8rem;
    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(40, 40, 40, 0.708);
    border-radius: 3%;
    z-index: 0;
    font-size: 0.9rem;
    position: relative;
    font-weight: bold;
    padding: 20px;
    color: white;
}
.area span {    
        padding: auto 5px;
}
.link-box {
    margin-top: 20px;
    text-align: center;
}

/*--------------------
お申込みの流れ
*-------------------*/

.flow_design02 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flow_design02 ul {
  padding: 0;
}

.flow_design02 li {
  list-style-type: none;
}

.flow_design02 dd {
  margin-left: 0;
}

.flow02 > li {
  padding: 40px 10px;;
}

.flow02 > li:not(:last-child) {
  border-bottom: 3px solid #549fbb;
  position: relative;
}

.flow02 > li:not(:last-child)::before,
.flow02 > li:not(:last-child)::after {
  content: "";
  border: solid transparent;
  position: absolute;
  top: 100%;
  left: 15%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.flow02 > li:not(:last-child)::before {
  border-width: 22px;
  border-top-color: #549fbb;
}

.flow02 > li:not(:last-child)::after {
  border-width: 18px;
  border-top-color: #fff;
}

.flow02 > li dl {
  margin: 0;
}

.flow02 > li dl dt {
  font-size: 1.3em;
  font-weight: 600;
  border-bottom: 2px dotted #878787;
  margin-bottom: 0.5em;
  padding-bottom: 0.5em;
  display: flex;
}

.flow02 > li dl dt .icon02 {
  font-size: 0.6em;
  color: #fff;
  background: #549fbb;
  padding: 5px 10px;
  display: inline-block;
  margin-right: 0.5em;
}

/*グーグルカレンダー*/
.calender {
  text-align: center;
}
.cal_wrapper {
  max-width: 960px;
  min-width: 300px;
  margin: 2.0833% auto;
  }
  .googlecal {
  position: relative;
  padding-bottom: 100%;
  height: 0;
  }
  .googlecal iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  }
  @media only screen and (min-width: 768px) {
  .googlecal { padding-bottom: 75%; }
  }

/*------------------------------------
manual-dawnload
-----------------------------------*/
a[download] {
    color: #fff;
    background-color: #b4b7b9;
    display: inline-block;
    padding: .5em 2em .5em 3em;
    border-radius: 12px;
    position: relative;
    margin-top: 10px;
}
a[download]::before {
    content: "";
    display: block;
    width: 2em;
    position: absolute;
    inset: 0 auto 0 4px;
    margin: auto;
    background-image: url(../img/manual/excell.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
a[download]:hover {
    background-color: rgb(56, 27, 27);
}
.lisense-block {
    text-align: center;
    margin: 40px 0;
    border: 2mm ridge rgb(119, 117, 117);
    padding-bottom: 20px;
}
/*---------------------------------------
タブレット対応
-------------------------------------*/
@media screen and (max-width: 930px) {
  
  }
    
  /*---------------------------------------
    スマホ対応
  -------------------------------------*/
  @media screen and (max-width: 610px) {

    .plan-detail-table {
        text-align: left;
    }
    a[download] {
        font-size: 0.9rem;
    }
  }
  