/*タブ切り替えボタン*/
#tabs .tabs-nav {
    margin: 0;
    padding: 0;
    list-style-type: none;
    border-bottom: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#tabs .tabs-nav li {
    display: inline-block;
    cursor: pointer;
    width: 49%;
    background: #e7f2fd;
    text-align: center;
    font-size:22px;
    margin: 0;
    padding: 25px 0;
    color:#000;
    border-radius: 10px 10px 0 0;
}
#tabs .tabs-nav .selected{
    background: #0773dd;
    color:#fff;
}
/*タブパネル*/
#tabs .tabs-panel {
    padding: 40px 30px;
    background: #f5f5f5;
    margin-bottom: 80px;
}
/*パネル内コンテンツ*/
.step-ttl-txt{
  text-align: center;
  font-size: 20px;
  margin-bottom: 30px;
}
.step-ttl-ttl{
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 40px;
}
.step-ttl-ttl span{
  display: inline;
  background-image: linear-gradient(transparent 60%, #fcdb34 60%);
}
.step-procedure{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
}
.step-procedure li{
  width: 32%;
  position: relative;
  background: #fff;
  border-radius: 10px;
}
.step-procedure li .step-procedure-ttl{
  background: #0773dd;
  border-radius: 10px 10px 0 0;
  padding: 20px 0;
}
.step-procedure li .step-procedure-ttl p{
  text-align: center;
  color: #fff;
  font-size: 22px;
}
.step-procedure li .step-procedure-content{
  padding: 30px 20px;
}
.step-procedure li .step-procedure-content .procedure-content-ttl{
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 30px;
}
.step-procedure li:nth-child(2) .step-procedure-content .procedure-content-ttl{
  line-height: 2.75em;
}
.step-procedure li .step-procedure-content .procedure-content-img{
  text-align: center;
  margin-bottom: 30px;
}
.step-procedure li .step-procedure-content .procedure-content-txt{
  text-align: center;
  font-size: 18px;
}
.step-procedure li .step-arrow{
  position: absolute;
  right: -10%;
  bottom: 40%;
  z-index: 1;
}
.step-note{
  font-size: 14px;
  margin-bottom: 20px;
}
.step-note a{
  text-decoration: underline;
  color: #0773dd;
}
.step-note-ttl{
  font-size: 16px;
}
.step-note-l {
  padding-left: 2em;
}
.step-note-l li{
  font-size: 16px;
  list-style: disc;
}
.step-note-l .step-note-l-top{
  margin-bottom: 40px;
}
.step-note-l li a{
  color: #0773dd;
}
.step-note-l li a span{
  text-decoration: underline;
}
/*sp版*/
@media screen and (max-width: 767px) {
#tabs .tabs-nav li {
    font-size:3.2vw;
    padding: 2.6vw 0;
}
/*タブパネル*/
#tabs .tabs-panel {
  padding: 8vw 4vw;
  margin-bottom: 16vw;
}
/*パネル内コンテンツ*/
.step-ttl-txt{
  font-size: 3.2vw;
  margin-bottom: 3.7vw;
}
.step-ttl-ttl{
  font-size: 3.7vw;
  margin-bottom: 5.3vw;
}
.step-procedure{
  margin-bottom: 4vw;
}
.step-procedure li{
  width: 100%;
  margin-bottom: 7vw;
}
.step-procedure li:last-child{
  margin-bottom: 0;
}
.step-procedure li .step-procedure-ttl{
  padding: 2.6vw 0;
}
.step-procedure li .step-procedure-ttl p{
  font-size: 3.2vw;
}
.step-procedure li .step-procedure-content{
  padding: 6.6vw 4vw;
  display: grid;
  grid-template-columns: 30% 70%;
  grid-template-areas: 
    "areaB areaA"
    "areaB areaC";
}
.step-procedure li .step-procedure-content .procedure-content-ttl{
  text-align: left;
  font-size: 3.2vw;
  margin-bottom: 5.3vw;
  grid-area: areaA;
}

.step-procedure li:nth-child(2) .step-procedure-content .procedure-content-ttl {
    line-height: 1em;
}
.step-procedure li .step-procedure-content .procedure-content-img{
  text-align: center;
  grid-area: areaB;
  margin-bottom: 0;
}
.step-procedure li .step-procedure-content .procedure-content-img img{
  width: 75%;
}
.step-procedure li .step-procedure-content .procedure-content-txt{
  text-align: left;
  font-size: 3.2vw;
  grid-area: areaC;
}
.step-procedure li .step-arrow{
  right: 20%;
  bottom: -20%;
}
.step-procedure li .step-arrow img{
  width: 80%;
}
.step-note{
  font-size: 3.2vw;
}
.step-note-ttl{
  font-size: 3.2vw;
}
.step-note-l li{
  font-size: 3.2vw;
}
.step-note-l .step-note-l-top{
  margin-bottom: 5.3vw;
}
}