/*------------------------------------------------------------------------------
label
------------------------------------------------------------------------------*/
.pageimg{
    background: url(../../img/label/pageimg_bg.webp) no-repeat center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    .pageimg{
        background: url(../../img/label/pageimg_bg_sp.webp) no-repeat center;
        background-size: cover;
    }
}

/*------------------------------------------------------------------------------
section01
------------------------------------------------------------------------------*/
section.p-label__section01{
    position: relative;
    padding-top: 1rem;
    top: -1px;
}

@media screen and (max-width: 768px) {
    section.p-label__section01{
        top: 0;
    }
}

section.p-label__section01::before{
    content: "";
    display: block;
    background-color: #0016D9;
    width: 100%;
    height: 45.5rem;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

@media screen and (max-width: 768px) {
    section.p-label__section01::before{
        height: 40rem;
    }
	
	.lang-en section.p-label__section01::before{
		height: 42rem;
	}
}

section.p-label__section01 h3.section__title{
    color: #fff;
    font-size: 3.6rem;
    margin-bottom: 3.6rem;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    section.p-label__section01 h3.section__title{
        font-size: 2.4rem;
        margin-bottom: 2.25rem;
    }
}

section.p-label__section01 p.section__text{
    font-size: 2rem;
    line-height: 4rem;
    color: #fff;
    margin-bottom: 5.4rem;
}

@media screen and (max-width: 768px) {
    section.p-label__section01 p.section__text{
        font-size: 1.4rem;
        line-height: 2.4rem;
        margin-bottom: 4.8rem;
    }
}

ul.label__list{
    display: flex;
    justify-content: space-between;
    gap: 1.8rem;
}

@media screen and (max-width: 768px) {
    ul.label__list{
        flex-wrap: wrap;
        gap: 4rem 2rem;
    }
}

ul.label__list li{
    flex: 1;
}

@media screen and (max-width: 768px) {
    ul.label__list li{
        flex: auto;
        width: calc((100% - 2rem) / 2);
    }
}

ul.label__list li a{
    display: block;
    transition: transform 0.4s ease;
}

ul.label__list li a .label__img{
    overflow: hidden;
    border: 1px solid #ccc;
}

ul.label__list li a .label__img img{
    object-fit: cover;
    transition: transform 0.4s ease;
    transform-origin: center;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.label__list li a:hover .label__img img{
    transform: scale(1.2);
}

.label__list li:nth-child(2) a:hover .label__img img{
    transform: scale(1.1);
}

ul.label__list li a p.label__text{
    font-size: 2rem;
    font-weight: bold;
    line-height: 3rem;
    margin-top: 1.2rem;
    border-bottom: 1px solid #0B0B0B;
    padding: 0 1.5rem 1.5rem 1.5rem;
    position: relative;
}

@media screen and (max-width: 768px) {
    ul.label__list li a p.label__text{
        font-size: 1.4rem;
        line-height: 2rem;
        padding: 0 0.8rem 1.2rem 0.8rem;
    }

    ul.label__list li:last-child a p.label__text{
        padding: 0.8rem 0.8rem 2.4rem;
    }
}

ul.label__list li a:hover p.label__text{
    color: #0016D9;
    border-bottom: 1px solid #0016D9;
}

ul.label__list li a p.label__text::after{
    content: "";
    display: block;
    background: url(../../img/index/arrow_black.svg) no-repeat center;
    width: 1.5rem;
    height: 1rem;
    position: absolute;
    right: 1.5rem;
    top: 2.6rem;
    background-size: 100%;
}

@media screen and (max-width: 768px) {
    ul.label__list li a p.label__text::after{
        right: 1rem;
    }

    ul.label__list li:first-child a p.label__text::after,
    ul.label__list li:nth-child(2) a p.label__text::after{
        top: 1.8rem;
    }
}

ul.label__list li a:hover p.label__text::after{
    background: url(../../img/index/arrow_blue.svg) no-repeat center;
    background-size: 100%;
}

ul.label__list li:first-child{
    position: relative;
}

ul.label__list li:first-child::after{
    content: "NEW";
    display: block;
    background: #FA4738;
    width: 5rem;
    height: 3rem;
    color: #fff;
    line-height: 3rem;
    font-family: "Oswald";
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
}

@media screen and (max-width: 768px) {
    ul.label__list li:first-child::after{
        font-size: 1.4rem;
        width: 3.5rem;
        height: 2rem;
        line-height: 2rem;
    }
}

/*------------------------------------------------------------------------------
section02 - spec table
------------------------------------------------------------------------------*/
.scroll-hint-icon-black{
    background-color: rbga(0,0,0,0.9);
    display: none;
}

@media screen and (max-width: 768px) {
    .scroll-hint-icon-black{
        display: block;
    }
}

.spec-table-wrapper {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    overflow-x: hidden;
    overflow-y: visible;
}

@media screen and (max-width: 768px) {
    .spec-table-wrapper {
        overflow-x: scroll;
    }

    .spec-table {
        width: auto;
    }
}

@media screen and (min-width: 768px) {
    .spec-table-wrapper {
        overflow-x: hidden !important;
    }
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 2rem;
    table-layout: auto;
}

.spec-table thead th {
    background-color: #F2F3F4;
    border: 1px solid #ccc;
    padding: 2.4rem 2rem;
    text-align: center;
    font-weight: bold;
    font-size: 1.8rem;
    white-space: nowrap;
}

@media screen and (max-width: 768px) {
    .spec-table thead th{
        font-size: 1.4rem;
        padding: 1.4rem 2.4rem;
    }
}

.spec-table tbody th {
    background-color: #F2F3F4;
    border: 1px solid #ccc;
    padding: 2.4rem 0.4rem 2.4rem 2rem;
    text-align: left;
    font-weight: bold;
    font-size: 1.8rem;
    white-space: nowrap;
}

@media screen and (max-width: 768px) {
    .spec-table tbody th {
        font-size: 1.4rem;
        padding: 1.4rem 2.4rem;
		max-width: 16.7rem;
    }
}

.spec-table tbody td {
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 2.4rem 0.8rem;
    text-align: center;
    font-size: 1.8rem;
    white-space: nowrap;
}

@media screen and (max-width: 768px) {
    .spec-table tbody td {
        font-size: 1.4rem;
        padding: 1.4rem 2.4rem;
    }
}

.spec-table__spacer {
    background-color: #fff !important;
    border: none !important;
    padding: 0 !important;
    width: 1.4rem!important;
    min-width: 1.4rem!important;
}

.spec-table__small {
    font-size: 1.4rem;
    display: block;
    margin-top: 0.5rem;
}

@media screen and (max-width: 768px) {
    .spec-table__small {
        font-size: 1.1rem;
        margin-top: 0;
    }
}

