/* **************************
Main
************************** */
.main{
    background: url(../img/spec/top-bg.jpg) no-repeat;
    background-size: contain;
}
.main .container {
    max-width: 980px;
}
.main h1{
    margin-bottom: 2rem;
    margin-top: 5.6rem;
}
.main h1 em{
    font-size: 1.6rem;
    display: block;
    font-style: normal;
    font-weight: 600;
}
.main figure{
    padding: 4rem 0 6.4rem;
    max-width: 860px;
    margin: auto;
}


/* **************************
Spec
************************** */
.spec h2{
    background: var(--color-secondary);
    color: var(--color-white);
    padding: 0.6rem 2.4rem;
    margin-bottom: 2.4rem;
    font-size: 1.6rem;
    width: fit-content;
    border-left: 8px solid var(--color-primary);
}

.spec .detail{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2.4rem;
}
.spec .spec-sheet{
  width: 48%;
}
.spec .spec-sheet dl{
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.2rem;
  max-width: 600px;
  font-size: 1.4rem;
}
.spec .spec-sheet dt {
  font-weight: bold;
}
.spec .spec-sheet dd {
  margin: 0;
}
.spec .setup{
  width: 48%;
}
.spec .setup .environment li{
    margin-bottom: 2.4rem;
    padding-left: 80px;
}
.spec .setup .environment li:nth-child(1){
    background: url(../img/spec/setup_img01.svg) no-repeat;
    background-size: 64px;
}
.spec .setup .environment li:nth-child(2){
    background: url(../img/spec/setup_img02.svg) no-repeat;
    background-size: 64px;
}
.spec .setup .environment li:nth-child(3){
    background: url(../img/spec/setup_img03.svg) no-repeat;
    background-size: 56px;
}
.spec .setup .environment li p{
    font-size: 1.4rem;
}
.spec .setup .environment li h4{
    color: var(--color-secondary);
    font-size: 1.6rem;
    font-weight:600;
}

.spec .setup .area ul{
}
.spec .setup .area li{
    font-size: 1.4rem;
    list-style: disc;
    margin-left: 1.6rem;
}

.spec .setup aside{
    font-size: 1.4rem;
}

/*録画時間の目安*/
.spec .rec-time{
    width: 100%;
    border-top: 1px solid #BBBBBB;
    margin-top: 4.8rem;
    padding-top:8rem;
}
.spec .rec-time h3{
    font-size:2.8rem;
    font-weight:700;
}
.spec .rec-time figure{
    padding-top:4rem;
}
.spec .rec-time figure figcaption{
    text-align:center;
    font-size: 1.4rem;
    padding-top:1.2rem;
}
.spec .rec-time figure figcaption:before{
    content: "＜";
}
.spec .rec-time figure figcaption:after{
    content: "＞";
}
.spec .rec-time figure table{
    width: 100%;
    max-width: 640px;
    border: 1px solid #BBBBBB;
    border-collapse: collapse;
    font-size: 1.6rem;
    margin:auto;
}
.spec .rec-time figure table th,
.spec .rec-time figure table td{
    border: 1px solid #BBBBBB;
    padding: 0.4rem 1.2rem;
    text-align: center;
}
.spec .rec-time figure table thead th{
    background:var(--color-primary);
    color:var(--color-white);
    padding: 0.2rem 1.6rem;
    text-align: center;
}
.spec .rec-time figure table tbody th{
    text-align: right;
    width: 30%;
}
.spec .rec-time figure table .badge{
    background:var(--color-secondary);
    color:var(--color-white);
    padding: 0.6rem 0.8rem;
    font-size: 1.4rem;
    border-radius: 4px;
    margin-right: 0.6rem;
}

@media (min-width: 2000px) {
/* **************************
Main
************************** */
.main{
    background: url(../img/spec/top-bg.jpg) top -10% center repeat-x;
    background-size: 100%;
}
.main figure{
    max-width: 980px;
}
}

@media (max-width: 768px) {
    /* **************************
    Main
    ************************** */
    .main{
        background: url(../img/spec/top-bg.jpg) no-repeat;
        background-size: 150%;
    }
    .main p{
        text-align: left;
        font-size: 1.4rem;
    }
    .main p > br{
        display: none;
    }
    .main figure{
        padding-top: 2rem;
        padding-bottom: 3.2rem;
    }
    
    /* **************************
    Spec
    ************************** */
    .spec h2{
        width: 100%;
        padding: 0.2rem 0.8rem;
    }
    .spec .detail{
        grid-template-columns: 1fr;
        gap: 6.4rem 0;
    }
    .spec h3{
        width: 100%;
    }
    .spec .spec-sheet{
            width: 100%;
    }
    .spec .setup{
            width: 100%;
    }
    .spec .setup .environment{
       margin-bottom: 56px;
    }
    .spec .setup .environment li{
        padding-left: 56px;
    }
    .spec .setup .environment li:nth-child(1){
        background-size: 48px;
    }
    .spec .setup .environment li:nth-child(2){
        background-size: 48px;
    }
    .spec .setup .environment li:nth-child(3){
        background-size: 40px;
    }
    .spec .rec-time{
        margin-top:0;
        padding-top: 0;
        border-top: none;
    }
    .spec .rec-time h3{
        font-size:1.8rem;
    }
    .spec .rec-time figure table{
        font-size: 1.4rem;
    }
    .spec .rec-time figure table th,
    .spec .rec-time figure table td{
        vertical-align: middle;
    }
    .spec .rec-time figure table .badge{
        padding: 0.4rem;
    }
    .spec .rec-time figure figcaption{
        font-size: 1.3rem;
    }
}