/*reset*/
main *,
*::before,
*::after {
    box-sizing: border-box
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
    margin: 0
}

ul {
    padding-inline-start: 0
}

[role="list"],
ol[role="list"] {
    list-style: none
}

body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
    overflow: hidden;
}

a:not([class]) {
    text-decoration-skip-ink: auto
}

main img,
picture {
    max-width: 100%;
    display: block
}

input,
button,
textarea,
select {
    font: inherit
}

/* NEEDED RESET WHEN index2020 is removed
--------------------------------------------------------- */
#contents .headSection {
    padding: 0;
    background: none !important;
}

html:not(:target) sup {
    font-size: 85%;
    top: -0.3em;
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
}

#contents .snsArea .detailSection {
    margin-bottom: 0px;
}

#contents .detailSection .ttl h3 {
    padding: 40px 0 20px 0 !important;
}

#contents .secLine {
    border-top: 1px solid #e5e5e5;
    height: 1px;
    width: 100%;
}

@media screen and (min-width: 768px) {
    #contents .detailSection .ttl h3 {
        padding: 60px 0 20px 0 !important;
    }
}

/* UTILS
--------------------------------------------------------- */
.mtAlpha {
    margin-top: 10px;
}

.prbl0 {
    padding-right: 0 !important;
    padding-bottom: 0 !important;
    padding-left: 0 !important;
}

.fs18 {
    font-size: 18px;
}

.justify-right {
    justify-content: flex-end !important;
}

.center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.emp {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.5;
}

.white-bold {
    color: #FFF;
    font-size: 14px;
    font-weight: bold;
}

.reg-txt {
    margin-top: 20px;
}

.sp-view {
    display: inline-block;
}

.pc-view {
    display: none;
}

.pc-only {
    display: none;
}

.vaS {
    vertical-align: super;
}

.fs20 {
    font-size: 20px;
}

@media screen and (min-width: 768px) {
    .sp-view {
        display: none;
    }
    
    .white-bold {
        font-size: 17px;
    }

    .pc-view {
        display: inline-block;
    }

    .pc-only {
        display: block;
    }

    .mtAlpha {
        margin-top: 40px;
    }

    .emp {
        padding-left: 24px;
    }

    .reg-txt {
        margin-top: 24px;
        font-size: 14px;
    }
}

/* LAYOUT
--------------------------------------------------------- */
#contents .container {
    padding: 40px 16px;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    border-bottom: 0;
}

.two-col {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.two-col--delta {
    gap: 48px;
}

/* iFrame Container */
.iframe-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.trademark-container {
    padding: 0 15px;
}

@media screen and (min-width: 768px) {
    #contents .container {
        padding: 40px 0;
        width: 100%;
        max-width: 960px;
        margin: 0 auto;
        border-bottom: 0;
    }
    
    .two-col {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .two-col--delta {
        gap: 80px;
        align-items: flex-start;
    }

    .two-col_column {
        flex-basis: 50%;
        flex-grow: 1;
        flex-shrink: 1;
    }

    .two-col_column--primary {
        flex-basis: 62.17%;
    }

    .trademark-container {
        padding: 0;
    }
}

/* COMPONENTS
--------------------------------------------------------- */

.listCaution {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.listCaution li {
	margin: 0 0 20px;
}

.listCaution a:link,
.listCaution a:visited {
	color: #005AB4;
	font-size: 14px;
	line-height: 1.286;
	text-align: justify;
	text-justify: inter-ideograph;
	text-decoration: none;
	transition: opacity 0.3s ease-out;
}

.listCaution a:hover,
.listCaution a:active {
	color:#FF3300; 
    text-decoration:underline;
}

.listCaution > li { 
    position: relative; 
    padding-left: 38px; 
    font-size: 12px; 
    line-height: 1.6; 
}

.listCaution > li .txt, 
.listCaution > li .img_tbl_1 figure figcaption, 
.img_tbl_1 figure .listCaution > li figcaption, 
.listCaution > li [class*="txt_link"] { 
    font-size: 1.2rem; 
}

.listCaution > li .txt_link_tb img { 
    vertical-align: -2px; 
}

.listCaution > li .listCaution_firstLetter { 
    position: absolute; 
    left: 0; 
    top: 0.03em; 
}

/* BUTTONS */
a.btn {
    position: relative;
    display: flex;
    align-items: center;
    padding: 8px 46px 8px 24px;
    background-color: #005AB4;
    color: #FFF;
    font-size: 14px;
    cursor: pointer;
}

a.btn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 7px;
    border-color: transparent transparent transparent #fff;
    transform: translateY(-50%);
}

.txt_link_in {
    display: inline-block;
    position: relative;
    padding-left: 23px;
    font-size: 16px;
}

.txt_link_in::before {
    content: '';
    display: block;
    position: absolute;
    top: 0.2em;
    left: 0;
    width: 15px;
    height: 15px;
    background: url(/common/images/ico_link_01.gif) no-repeat;
}

a.btn:hover {
    opacity: 0.6;
    text-decoration: none !important;
}

/*** Headers / Title */
.heading-2 {
    font-size: 26px;
    font-weight: bold;
    line-height: 1.54;
    color: #333;
    text-align: center;
}

.heading-3 {
    position: relative;
    padding: 0 0 0 20px;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.5;
    color: #333;
}

.heading-3::before {
    content: '';
    position: absolute;
    left: 0;
    width: 10px;
    height: 100%;
    background-color: #005AB4;
}

.heading-4 {
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.3;
    color: #333;
}

/*** Point */
.point {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 20px;
    width: 92px;
    height: 34px;
    font-size: 18px;
    font-weight: bold;
    background-image: url(/products/bizprojector/eb810e/img/bg_sp-point.png);
    background-size: contain;
    background-repeat: no-repeat;
    color: #005AB4;
}

@media screen and (min-width: 768px) {

    a.btn {
        width: max-content;
        padding: 16px 46px 16px 24px;
    }

    .heading-2 {
        font-size: 36px;
        line-height: 1.5;
    }

    .heading-3 {
        font-size: 30px;
        padding: 0 0 0 30px;
    }

    .point {
        width: 140px;
        height: 63px;
        font-size: 20px;
        background-image: url(/products/bizprojector/eb810e/img/bg_pc-point.png);
    }

}

/* MODULES
--------------------------------------------------------- */

/* keyVisual */
.keyVisual {
    display: block;
    height: 400px;
    margin-top: 20px;
    background-image: url(/products/bizprojector/eb810e/img/spmv.jpg);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size:cover;
}

.keyVisual_inner {
    padding: 16px 16px 0 16px;
}

.keyVisual_sub,
.keyVisual_main {
    color: #FFF;
}

.keyVisual_sub {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
}

.keyVisual_main {
    margin-top: 10px;
    font-size: 30px;
    font-weight: bold;
    line-height: 1;
}

/* Before / After  Images */
.before-after {
    background: #EEEEEE;
}

.before-after_img figcaption {
    padding-bottom: 8px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
}

.before-after_content {
    position: relative;
    gap: 48px;
}

.before-after_content::after {
    content: '';
    position: absolute;
    bottom: 48%;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 15px;
    background-image: url(/products/bizprojector/eb810e/img/ico_arrow-down.png);
}

/* Spec */
.spec {
    background-color: #FAFAFA;
}

.simple-table-container {
    overflow-x: auto;
    padding-bottom: 16px;
}

.simple-table {
    border: 1px solid #E2E2E2;
    min-width: 440px;
    white-space: nowrap;
}

.simple-table tr {
    display: flex;
    border-bottom: 1px solid #E2E2E2;
}

.simple-table tr:last-child {
    border-bottom: 0;
}

.simple-table tr > th {
    padding: 20px;
    flex-basis: 45%;
    background-color: #EEEEEE;
    font-weight: bold;
} 

.simple-table tr > td {
    padding: 20px;
    flex-basis: 55%;
}

/*** figure */
.figure {
    position: relative;
    margin-top: 20px;
}

.figure img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.figure_caption {
    position: absolute;
    bottom: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    padding: 20px;
    background: linear-gradient(to bottom, rgba(0, 129, 200, 0.5), rgba(11, 54, 143, 1));
}

/*** Sub Feature */
.sub-features {
    margin-top: 40px;
}

.sub-feature {
    margin-top: 20px;
    border: 1px solid #e8e8e8;
    align-items: stretch;
    gap: 0;
}

.sub-feature_content--01 {
    background-image: url(/products/bizprojector/eb810e/img/bg_num01.png);
    background-repeat: no-repeat;
    background-position: top left;
}

.sub-feature_content--02 {
    background-image: url(/products/bizprojector/eb810e/img/bg_num02.png);
    background-repeat: no-repeat;
    background-position: top left;
}

.sub-feature_content--03 {
    background-image: url(/products/bizprojector/eb810e/img/bg_num03.png);
    background-repeat: no-repeat;
    background-position: top left;
}

.sub-feature_content {
    padding: 80px 20px 40px 20px;
    background-color: #F4F4F4;
}

.imgs-with-ribbon {
    position: relative;
}

.imgs-with-ribbon-container {
    display: flex;
    justify-content: center;
}

.imgs-with-ribbon::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 99px;
    height: 99px;
    background-image: url(/products/bizprojector/eb810e/img/ico_sp-pdf-ribbon.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.pdf-download {
    background-color: #F7F7F7;
}

@media screen and (min-width: 768px) {
    .simple-table-container {
        padding-bottom: 0;
    }

    .imgs-with-ribbon::before {
        top: 0;
        left: 0;
        background-image: url(/products/bizprojector/eb810e/img/ico_pc-pdf-ribbon.png);
    }

    .keyVisual {
        display: flex;
        align-items: center;
        background-image: url(/products/bizprojector/eb810e/img/mv.jpg);
        height: 375px;
    }

    .keyVisual_inner {
        width: 100%;
        max-width: 960px;
        margin: 0 auto;
        padding: 0;
    }

    .keyVisual_main {
        margin-top: 16px;
        font-size: 32px;
    }

    .keyVisual_sub {
        font-size: 18px;
    }

    .figure_caption {
        padding: 20px 0;
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }

    .point {
        width: 122px;
        height: 40px;
        font-size: 20px;
        background-image: url(/products/bizprojector/eb810e/img/bg_pc-point.png);
    }

    .before-after_content {
        gap: 80px;
    }

    .before-after_content::after {
        bottom: 40%;
        left: 50%;
        transform: translateX(-50%);
        width: 24px;
        height: 33px;
        background-image: url(/products/bizprojector/eb810e/img/ico_arrow-right.png);
    }

    .sub-feature {
        align-items: stretch;
    }

    .sub-feature_content {
        display: flex;
        align-items: stretch;
        flex-basis: 62.17%;
        padding: 40px 30px 40px 32px;
    }

    .sub-feature_img {
        flex-basis: 45.83%;
    }

    .sub-feature_img img {
        width: 100%;
        height: 100%;
        /* height: auto; */
        object-fit: cover;
    }
}

