/***** GENERAL CONTAINER ****************************************/
.generalcontainer_container {
    background-color: #f5f5f7;
    padding-bottom: 1px;
    position: relative;
}
.generalcontainer {
    min-height: 500px;
    padding: 100px 20%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
    margin-bottom: 24px;
    background-color: #FFF;
	background-size:cover;
	background-repeat: no-repeat;
	background-position: center center;
}
.generalcontainer_main {
    min-height: 700px;
}
.oem_back1 {
    background-image: url('ax/img/oem_back1.jpg');
}
.oem_back2 {
    background-image: url('ax/img/oem_back2.jpg');
}
.oem_back3 {
    background-image: url('ax/img/oem_back3.jpg');
}
.generalcontainer_wide {
    padding: 100px 15%;
}
.paragrapharea {
    width: 600px;
    /* width: 60%; */
}
.paragrapharea_small {
    width: 460px;
}
.paragrapharea_wide {
    width: 100%;
    margin-bottom: 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	flex-wrap: nowrap;
}
.paragraphtitle {
    font-size: 50px;
    line-height: 66px;
    /* white-space: nowrap; */
    font-weight: 700;
    margin-bottom: 10px;
}
.paragraphtitle_big {
    font-size: 70px;
    line-height: 86px;
}
.parapraphbody {
    font-size: 18px;
    line-height: 30px;
}
.parapraphbody_big {
    font-size: 28px;
    line-height: 46px;
}
.generalcontentarea {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-end;
	flex-wrap: wrap;
}
.generalcontentarea_how {
	align-items: flex-start;
}
.generalcontentarea_wide {
	width: 100%;
    gap: 50px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.generalcontentarea_wide:only-child,
.generalcontentarea_wide > :only-child {
  justify-content: center;    /* 親が 1 行構成の場合 */
  margin-inline: auto;        /* 子要素だけの場合 */
}
.generalcontentbox {
    width: 300px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: nowrap;
}
.generalcontentboxheader {
    font-weight: bold;
    font-size: 36px;
    line-height: 48px;
    text-align: center;
    margin-bottom: 10px;
}
.generalcontentboxbody {
    font-size: 16px;
    line-height: 26px;
}
.generalcontentboximage {
    width: 200px;
    height: 160px;
	background-size:cover;
	background-repeat: no-repeat;
	background-position: center center;
}
.generalcontentarea li {
    font-size: 22px;
    line-height: 30px;
    margin: 5px 0;
}
.generalcontentarea ul li::marker { 
    color: #C26CA1;
    font-size: 1.5em;
    /* margin-right: .1em; */
}
.generalcontentarea ol li::marker { 
    color: #C26CA1;
    font-size: 1.1em;
}
.ctaarea {
    min-width: 200px;
}
.richbutton {
    font-size: 14px;
    line-height: 14px;
    width: auto;
    height: 56px;
    padding: 20px 35px;
    background-color: #C26CA1;
    color: #FFF;
    font-weight: 700;
}
.richbutton:lang(en) {
    font-size: 16px;
    line-height: 16px;
}
.highlight {
    color: #C26CA1;
}
.iconarea {
    gap: 40px;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	flex-wrap: wrap;
}
.stafficon {
    width: 100px;
    height: 100px;
}
.scroll-down {
    position: absolute;     /* .hero を基準に */
    left: 50%;
    bottom: 32px;           /* 下からの距離を調整 */
    transform: translateX(-50%);
    display: inline-flex;
    padding: 8px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity .3s ease;
}
.scroll-down svg {
    color: #000;             /* ← これだけで矢印を黒に */
    width: 80px;
    height: 40px;
    stroke-width: .3;
}  
.scroll-down:hover { opacity: 1; }
@keyframes bounce-simple {
    0%   { transform: translate(-50%, 0); }   /* 基準位置 */
    50%  { transform: translate(-50%, -20px); }/* ふわっと上へ */
    100% { transform: translate(-50%, 0); }   /* 戻る */
}
.scroll-down {
    animation: bounce-simple 1.8s ease-in-out infinite;
}
  
/* モバイルでタップ領域を広げたい場合 */
@media (pointer: coarse) {
    .scroll-down { padding: 12px; }
}


/* MEDIA START **********************************************/
@media (max-width: 1500px) {
    .generalcontainer {
        padding: 80px 10%;
    }
    .generalcontainer_wide {
        padding: 80px 5%;
    }
} /* MEDIA END **********************************************/
/* MEDIA START **********************************************/
@media (max-width: 1200px) {
    .generalcontainer {
        padding: 80px 2%;
    }
} /* MEDIA END **********************************************/
/* MEDIA START **********************************************/
@media (max-width: 600px) {
    .generalcontainer {
        padding: 50px 2%;
        min-height: 400px;
    }
    .oem_back1 {
        background-image: url('ax/img/oem_back1_n.jpg');
    }
    .oem_back2 {
        background-image: url('ax/img/oem_back2_n.jpg');
    }
    .oem_back3 {
        background-image: url('ax/img/oem_back3_n.jpg');
    }
    .paragrapharea {
        width: 100%;
    }
    .paragraphtitle {
        font-size: 32px;
        line-height: 48px;
        margin-bottom: 3px;
        /* white-space: normal; */
    }    
    .paragraphtitle_big {
        font-size: 44px;
        line-height: 58px;
    }    
    .parapraphbody {
        font-size: 16px;
        line-height: 26px;
    }
    .parapraphbody_big {
        font-size: 22px;
        line-height: 36px;
    }
    .generalcontentarea {
        width: 100%;
        justify-content: center;
    }
    .generalcontentarea li {
        font-size: 18px;
        line-height: 26px;
        margin: 3px 0;
    }
    .generalcontentarea ul li::marker { 
        color: #C26CA1;
        font-size: 1em;
        margin-right: .1em;
    }
    .iconarea {
        gap: 20px;
    }
    .stafficon {
        width: 80px;
        height: 80px;
    }
    .scroll-down {
        bottom: -30px;           /* 下からの距離を調整 */
    }
    .scroll-down svg {
        width: 40px;   /* 80 × 0.25 */
        height: 20px;  /* 40 × 0.25 */
        stroke-width: 1;
    }
} /* MEDIA END **********************************************/
    
    