@charset "utf-8";



/* ========================
トップ：ファーストビュー
==========================*/
.FV {
    width: 100%;
    height: min(calc(100vw/2),900px);
    overflow: hidden;
    position: relative;
}

.FV_img01,
.FV_img02,
.FV_img03 {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation-name: slide-animation;
    animation-duration: 12s;
    animation-iteration-count: infinite;
    z-index: -1;
    opacity: 0;
}

.FV_img01::before,
.FV_img02::before,
.FV_img03::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2); /* ← 黒10% */
    z-index: 1;
}

.FV_img01 {
    background-image: url(../images/KV_pc_01.webp);
    opacity: 1;
}

.FV_img02 {
    background-image: url(../images/KV_pc_02.webp);
    animation-delay: 4s;
}

.FV_img03 {
    background-image: url(../images/KV_pc_03.webp);
    animation-delay: 8s;
}

/* ファーストビューアニメーション */
@keyframes slide-animation {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }

    25% {
        opacity: 1;
    }

    65% {
        opacity: 0;
        transform: scale(1.0);
    }

    100% {
        opacity: 0;
    }
}



.FV_content {
    padding-top: 10%;
    margin-left: 5%;
}

.FV h1 {
    font-size: clamp(48px, calc(100vw / 1400 * 60), 72px);
	line-height: 1.4;
    color: #fff;
    font-weight: 700;
}


.FV_content p {
    font-size: clamp(14px, calc(100vw / 1400 * 18), 21px);
    color: #fff;
    line-height: 2;
	margin-top: 3%;
}

.FV_flex {
    display: flex;
    justify-content: space-between;
    margin-top: 4%;
    align-items: center;
}

.FV_news {
    width: 45%;
    background-color: #fff;
    padding: 1% 8% 1% 5%;
    border-radius: 0px 100px 100px 0;
    min-width: 420px;
}

.FV_newsTitle {
    font-size: clamp(18px, calc(100vw / 1200 * 20), 20px);
    font-weight: 600;
    position: relative;
    line-height: 1.5;
}

.FV_newsTitle::after {
    content: '';
    display: block;
    border: solid 1px var(--primary-blue);
    width: 140%;
    position: absolute;
    top: 110%;
    left: -170px;
}


.FV_news_content {
    margin-top: 3%;
    overflow: hidden;
}

.FV_news_content li {
    list-style: none;
    display: block;
}

.FV_news_content a {
    display: flex;
    width: 100%;
}

.FV_news_content p {
	font-size: clamp(12px, calc(100vw / 1200 * 13), 18px);
    font-weight: 500;
    overflow: hidden;          /* 溢れた部分を隠す */
    text-overflow: ellipsis;   /* 溢れた部分を「...」にする */
    white-space: nowrap;       /* 1行で表示 */
}

.FV_news_date {
    color: var(--primary-blue);
    margin-right: 10%;
}

.top_service_banner {
    width: calc(100vw / 5);
    margin-right: 2%;
}


/* ========================
トップ：実証現場動画スライド
==========================*/
.slide_item {
    width: 100%;
    height: 100%;
    padding: 6% 0 2%;
}

.slide_item .slick-slide {
  padding: 0 20px;
}

.slick-initialized .slick-slide{
    display: flex;
}

.slide_item li {
    width: calc(100vw / 3);
    /* height: calc(100vw / 5); */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: .3;
    transform: scale(.8);
    transition: opacity .5s, transform .5s;
}

.slide_item iframe {
    border-radius: 20px;
}

.slide_item .slick-center {
    transform: scale(1);
    opacity: 1;
}

.arrow_box {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.prev-arrow,
.next-arrow {
    display: block;
    width: 40px;
    height: 40px;
    border:solid 2px var(--primary-blue);
    border-radius: 50%;
    position: relative;
	cursor: pointer;
}

.prev-arrow {
    transform: rotate(180deg);
    margin-right: 50px;
}

.prev-arrow::before,
.next-arrow::before{
    position:absolute;
    content: "";
    width:6px;
    height:6px;
    border-right: 2px solid var(--primary-blue);
    border-top: 2px solid var(--primary-blue);
    top:0;
    bottom:0;
    left:0;
    right:0;
    margin:auto;
    transform:rotate(45deg);
}


/* ========================
トップ：先進モビリティとは
==========================*/
.mc_right_band_top{
    background-image: url(../images/top_img01.webp);
}

.section_topAboutUs {
    margin-top: 5%;
    margin-bottom: 5%;
}

.aboutUs_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.aboutUs_content:nth-of-type(2),
.aboutUs_content:nth-of-type(3) {
    margin-top: 7%;
}

.aboutUs_content div {
    width: 47%;
}

.aboutUs_content img {
    border-radius: 20px;
}

.reverse {
    flex-direction: row-reverse;
}

.aboutUS_txt {
    font-size: var(--fontSize-18px);
    line-height: 2.4;
    width: 30vw;
}

.bgTxt {
    font-size: clamp(80px, 8vw, 145px);
    font-weight: 600;
    color: rgba(15, 120, 185, 0.2);
    position: absolute;
    left: 0px;
	bottom: -120%;
}

.TrPr_top {
    margin-top: 12%;
}

.TrPr_top_container {
    display: flex;
    gap: 30px;
    margin-top: 7%;
}

.TrPr_top_content {
    display: flex;
    padding: 20px 6.1% 30px 1.7%;
    background-color: var(--background-blue);
    border-radius: 10px;
    flex: 1;
}

.TrPr_top_number {
    font-size: var(--fontSize-20px);
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    color: var(--primary-blue);
}

.TrPr_top_icon1 {
    width: clamp(80px, 4.9vw, 95px);
}

.TrPr_top_icon2 {
    width: clamp(150px, 8.7vw,170px);
}

.TrPr_top_content div:first-of-type {
    margin: 10px auto 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.TrPr_top_contentTxt {
    font-size: var(--fontSize-18px);
    margin-top: 15px;
    text-align: center;
}

.TrPr_top_txt{
    margin-top: 7%;
}

.btn_topTrPr {
    margin-top: 7%;
}



/* ===================================
先進モビリティの自動運転技術・ソリューション
=====================================*/
.mc_right_band_topAS{
    background-image: url(../images/top_AS_img01.webp);
}

.section_topAS {
    background-color: var(--background-blue);
    padding-top: 6%;
    padding-bottom: 6%;
}

.topAS_feature_container {
    display: flex;
    gap: 50px;
}

.topAS_feature_block{
	width: 50%;
}

.topAS_feature_item div {
    display: flex;
    margin-top: 20px;
}

.topAS_feature_item div:first-of-type {
    margin-top: 0;
}

.topAS_feature_number {
    font-size: var(--fontSize-20px);
    color: var(--primary-blue);
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    margin-top: 4.5px;
    margin-right: 3%;
}

.topAS_feature_txt {
    font-size: var(--fontSize-20px);
    font-weight: 600;
    line-height: 1.7;
}

.topAS_feature_txt_mini{
	display: inline-block!important;
    font-size: var(--fontSize-16px)!important;
    font-weight: 400!important;
}

.topAS_feature_txt span {
    display: block;
    font-size: var(--fontSize-18px);
    font-weight: 400;
}

.topAS_feature_lastTxt {
    margin-top: 6%;
}

.btn_topAS {
    margin-top: 6%;
}

.section_topAS .nextPage_btn {
    margin-top: 7%;
}

.bus_btn {
    background-image: url(../images/top_AS_img03.webp);
}

.truck_btn {
    background-image: url(../images/top_AS_img04.webp);
}



/* ===================================
全国で技術実証と社会実装推進
=====================================*/

.section_DE{
	margin-top: 6%;
    overflow: hidden;
}

.section_DE .slick-slide {
  height: auto;
}

.DE_smallTitle {
    font-size: var(--fontSize-18px)!important;
    font-weight: 400!important;
    color: black!important;
}

.DETop_band {
    height: auto;
}

.DETop {
    background-image: none;
}

.DE_slider_item {
    width: 25vw!important;
    position: relative;
    margin-right: 30px;
    overflow: hidden;
}

.DE_slider_item img {
    transition: 0.4s;
}

.DE_slider_item img:hover {
    transform: scale(1.1);
}

.DE_slider .slick-list .draggable {
    position: relative;
}

.DE_slider p {
    position: absolute;
    top: -1px;
    right: -1px;
    font-size: var(--fontSize-18px);
    font-weight: 600;
    background-color: #fff;
    border-radius: 0 0 0 20px;
    padding: 20px 10%;

}

.DE_slider .slick-slide {
    display: block;
}

.DE_btn {
    width: 80%;
}



.DE_slider .slide-dots button {
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
    border: none;
    background-color: transparent;
}

.DE_slider .slide-dots {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
    width: 75%;
}
.DE_slider .slide-dots li {
    width: 15px;
    height: 15px;
    background-color: #fff;
    border: 1px solid var(--primary-blue);
    border-radius: 50%;
    margin-right: 10px;
    cursor: pointer;
    transition: background-color .5s ease;
}
.DE_slider .slide-dots li.slick-active {
    background-color: var(--primary-blue);
}
.DE_slider .slide-dots li:hover {
    background-color: var(--primary-blue);
}
.DE_slider .slide-dots li:last-child {
    margin-right: 0;
}

.section_DE .btn_Box {
    margin-top: 4%;
}




/* ===================================
企業情報
=====================================*/
.section_topCompany {
    margin-top: 7%;
}

.topCompany_container {
    display: flex;
    justify-content: space-between;
}

.topCompany_img {
    width: min(40.3vw,700px);
    position: relative;
}

.topCompany_img::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-image: url(../images/top_company_img_cloud.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
}

.section_topCompany .btn_Box {
    margin-top: 14%;
}

/* -------- イラストアニメーション -------- */
.topCompany_img::after {
    animation: floating-y 2.5s ease-in-out infinite alternate-reverse;
}
@keyframes floating-y {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-3%);
    }
}

.topCompany_content {
    width: 35%;
    margin-right: 4%;
}

.topCompany_content h3{
	font-size: clamp(18px, calc(100vw / 1400 * 21), 24px);
	font-weight: 600;
}

.topCompany_btn a {
    width: 100%;
}



/* ===================================
お知らせ
=====================================*/
.section_topNews {
    margin-top: 5%;
    margin-bottom: 5%;
}
.topNews_container {
    display: flex;
    gap: 30px;
}

.topNews_content {
    flex: 1;
    min-width: 0;
}

.topNews_content div {
    height: 13vw;
    background-color: #999999;
    border-radius: 20px;
}

.topNews_title {
    overflow-wrap: break-word;
}

.topNews_date {
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    margin: 25px 2% 0;
}

.topNews_date span {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    color: var(--primary-blue);
    margin-left: 10%;
}

.topNews_title {
    margin: 20px 2%;
}

.topNews_title {
    word-break: break-all;
}

.section_topNews .btn_Box {
    margin-top: 4%;
}

/* ===================================
TOPページ　採用
=====================================*/
.top_recruit {
    overflow: hidden;
    background-color: var(--background-blue);
    /* position: relative; */
}

.top_recruit_container {
    margin-top: 7%;
    margin-bottom: 7%;
    max-width: 1520px;
    display: flex;
}

.top_recruit_img {
    width: 45vw; 
}

.top_recruit_img img {
    height: calc(100vh / 2.3);
    object-fit: cover;
    border-radius: 0 20px 20px 0;
}

.top_recruit_content {
    width: 35%;
    padding: 0 90px 0 90px;
}

.top_recruit_title {
    writing-mode: vertical-rl;
    font-size: var(--fontSize-24px);
    font-weight: 600;
    margin: 0 auto;
}

.top_recruit_txt {
    margin-top: 35px;
}

.top_btn_recruit {
    margin-top: 40px;
}

.top_btn_recruit a {
    width: 100%;
}

/* .top_recruit::after {
    content: '';
    display: block;
    width: 75%;
    height: calc(100vh / 1.4);
    background-color: var(--background-blue);
    position: absolute;
    top: 50%;
    right: calc(50% - 50vw);
    transform: translateY(-50%);
    z-index: -1;
} */


/* --------------------------- 企業理念ページ ------------------------ */

.about_FV {
    background-image: url(../images/about_topImg.webp);
}

.about_h3 {
    font-size: var(--fontSize-25px);
    font-weight: 600;
    color: var(--primary-blue);
}

.abotSection_topTitle p {
    margin-top: 2%;
    line-height: 1.7;
}

/* ===================================
企業理念　先進モビリティの理念
=====================================*/
.section_op {
    margin-top: 5%;
    margin-bottom: 10%;
}

.MVV {
    display: flex;
    align-items: center;
    gap: 15px;
}

.MVV div {
    width: 10vw;
    height: 10vw;
    background-color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: clamp(20px, 1.5vw, 28px);
    flex-shrink: 0;
}

.MVV p {
    font-size: var(--fontSize-24px);
    color: var(--primary-blue);
    font-weight: 600;
	margin-left: 10px;
    background-color: #fff;
    border-radius: 15px;
    line-height: 1.7;
}

.MVV ul {
    gap: 1vw;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
}

.MVV li {
    background-color: #fff;
    border-radius: 15px;
    font-size: var(--fontSize-24px);
    color: var(--primary-blue);
    font-weight: 600;
    width: 100%;
	margin-left: 10px;
	margin-bottom: 20px;
}

.MVV li span {
    display: block;
    font-size: var(--fontSize-18px);
    font-weight: 400;
    color: #000;
    margin-top: 1%;
    line-height: 1.7;
}

.MVV_container {
    display: flex;
}

.MVV_container img {
    width: 100%;
}

.mvv_left{
	width: 58%;
	margin-right: 2%;
}

.mvv_right{
	width: 40%;
}


/* ===================================
企業理念　日本の「移動」が今抱えている交通課題
=====================================*/
.mc_left_band_TP01 {
    background-image: url(../images/Transportation_Problems_top01.webp);
    height: 50vh;
}

.mc_left_txt_blue p,
.mc_right_txt_blue p {
    color: var(--primary-blue);
    font-size: var(--fontSize-25px);
    font-weight: 600;
}

.TP_sectionTxt p {
    line-height: 2;
}

.TP_container {
    margin: 5% 0 10%;
}

.TP_container ul {
    display: flex;
    justify-content: space-between;
    margin-top: 3%;    
}

.TP_container img {
    height: calc(100vh / 4);
    object-fit: contain;
}


.TP_container li p {
    color: var(--primary-blue);
    text-align: center;
    margin-top: 10px;
    font-size: var(--fontSize-20px);
}

.mc_right_band_TP02 {
    background-image: url(../images/Transportation_Problems_top02.webp);
    height: 50vh;
}

.TP_lastBox {
    margin-top: 10%;
    margin-bottom: 10%;
}

.TP_lastBox p {
    font-size: var(--fontSize-22px);
    text-align: center;
}

.TP_lastBox ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 30px 80px;
    margin-top: 3%;
}

.TP_lastBox li {
    background-color: var(--background-blue);
    padding: 3% 5%;
    text-align: center;
    border-radius: 15px;
}


/* ===================================
企業理念　目指す未来
=====================================*/
.section_future {
    padding-top: 5%;
    padding-bottom: 5%;
    background-color: var(--background-blue);
}

.future_block {
    flex: 1;
}

.future_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3vw;
}

.future_container p {
    line-height: 2;
    overflow-wrap: break-word;
}

.future_container img {
    width: clamp(400px, 36vw, 575px);
    border-radius: 15px;
}

.solution_btn {
    background-image: url(../images/about_lastBtn_img.webp);
}


/* -------------------- 自動運転・システムページ -------------------- */

.system_FV {
    background-image: url(../images/system_FV.webp);
}

.system_h3 {
    font-size: var(--fontSize-25px);
    color: var(--primary-blue);
    font-weight: 600;
}

/* =======================================
システム　先進モビリティの自動運転技術の4つの特長
=========================================*/

.section_FoADT {
    margin-top: 5%;
    margin-bottom: 5%;
}

.systemSection_topTitle p {
    line-height: 1.7;
}

.FoADT_container {
    display: flex;
    margin-top: 7%;
    align-items: center;
}

.FoADT_container_revers {
    flex-direction: row-reverse;
}

.FoADT_txtbox {
    margin-right: 5%;
}

.FoADT_container_revers .FoADT_txtbox {
    margin-left: 5%;
    margin-right: 0;
}

.system_h3_border {
    padding-bottom: 2%;
    border-bottom: solid 1px var(--primary-blue);
}

.FoADT_title {
    margin-top: 3%;
    font-size: var(--fontSize-25px);
    font-weight: 600;
}

.FoADT_txt {
    margin-top: 3%;
    line-height: 1.7;
}

.FoADT_Bullet_point {
    font-size: var(--fontSize-20px);
    line-height: 1.7;
    margin-top: 3%;
}

.FoADT_container img {
    object-fit: contain;
    width: clamp(400px, 35vw, 600px);
}

/* =======================================
システム　レベル4自動運転の解説
=========================================*/

.section_level4 {
    padding-top: 5%;
    padding-bottom: 6%;
    background-color: var(--background-blue);
}

.systemSection_topTitle span {
    display: block;
    margin-top: 3%;
}

.level4_container {
    margin-top: 6%;
}

.level4_container ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
    margin-top: 3%;
}

.level4_container li {
    background-color: #fff;
    padding: 3% 5%;
    border-radius: 8px;
    text-align: center;
}

.level4_chart_container {
    margin-top: 6%;
}

.level4_chart_container img {
    display: block;
    margin: 5% auto;
}

.level4_btn {
    background-image: url(../images/system_level4_btn.webp);
    margin-top: 5%;
}

/* =======================================
システム　先進モビリティはソフト×ハード、両対応
=========================================*/
.section_softHard {
    margin-top: 6%;
}

.mc_right_band_soft {
    background-image: url(../images/soft_hard_img01.webp);
    margin-top: 2%;
    height: 50vh;
    width: 100vw;
}

.mc_left_band_hard {
    background-image: url(../images/soft_hard_img02.webp);
    height: 50vh;
}

.softHard_txtBox {
    margin-top: 5%;
}

.softHard_top_txt {
    line-height: 1.7;
}

.softHard_title {
    font-size: var(--fontSize-25px);
    font-weight: 600;
}

.softHard_title_subTxt {
    margin-top: 2%;
    line-height: 1.7;
}

.softHard_BulletPoint_box {
    margin-top: 5%;
}

.softHard_BulletPoint_txtBox {
    display: flex;
    justify-content: space-between;
    margin-top: 2%;
    margin-bottom: 7%;
}

.softHard_BulletPoint_txtBox li {
    font-size: var(--fontSize-18px);
    line-height: 2;
    text-indent: -0.8rem;
    margin-left: 0.8rem;
}

.softHard_BulletPoint_txtBox li::before {
    content: '・';
}

.softHard_BulletPoint_txtBox ul:first-of-type {
    margin-right: 2%;
}

.softHard_area img {
    /* display: block; */
    margin-top: 5%;
}

.softHard_lastTxt {
    padding: 3% 3%;
    background-color: var(--background-blue);
    border-radius: 15px;
    font-size: var(--fontSize-22px);
    font-weight: 600;
    text-align: center;
    margin-top: 10%;
    margin-bottom: 10%;
}


/* -------------------- 企業情報 -------------------- */

.company_FV {
    background-image: url(../images/company_FV.webp);
}

.company_h3 {
    color: var(--primary-blue);
    font-size: var(--fontSize-25px);
    font-weight: 600;
}

.company_h3_center {
    text-align: center;
}

/* =======================================
企業情報　東京大学発の強み
=========================================*/
.section_AoTUoT {
    margin-top: 5%;
    margin-bottom: 7%;
}

.circle_itemBox {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.circle_item {
    width: clamp(250px, 20vw, 345px);
    height: clamp(250px, 20vw, 345px);
    border: solid 1px var(--primary-blue);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	padding: 20px;
}

.circle_itemTitle {
    text-align: center;
    font-size: var(--fontSize-24px);
    font-weight: 600;
    color: var(--primary-blue);
}

.circle_itemTxt {
    text-align: center;
    font-size: var(--fontSize-18px);
    margin-top: 3%;
}

.advantage_lastTxt {
    margin-top: 8%;
    line-height: 1.7;
}


/* =======================================
企業情報　代表・経営陣の声
=========================================*/
.section_MFM {
    padding-top: 7%;
    padding-bottom: 7%;
    background-color: var(--background-blue);
}

.MFM_container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 3%;
}


.MFM_img {
    width: clamp(270px, 20.6vw, 360px);
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10%;
}

.MFM_img img{
	border-radius: 15px;
}

.MFM_txt {
    line-height: 2.3;
}

.MFM_sign {
    font-size: var(--fontSize-28px);
    text-align: end;
    margin-top: 5%;
}

.MFM_sign span {
    font-size: var(--fontSize-18px);
    margin-right: 2%;
}

.MFM_name {
    margin-top: 5%;
}

.MFM_name_item {
    display: grid;
    grid-template-columns: 1fr 0.6fr 2fr;
    grid-template-rows: auto;
    align-items: center;
    padding: 2% 2%;
    border-top: solid 1px var(--primary-blue);
    gap: 1vw;
}

.MFM_name_item:last-of-type {
    border-bottom: solid 1px var(--primary-blue);
}

.MFM_border {
    width: 1px;
    height: 100%;
    background-color: var(--primary-blue);
}

.MFM_name_txt {
    font-size: var(--fontSize-25px);
}

.MFM_name_txt span {
    display: block;
    font-size: var(--fontSize-18px);
    margin-bottom: 3%;
}

.MFM_name_subTxt {
    line-height: 1.7;
}

/* =======================================
企業情報　会社概要・沿革
=========================================*/
.section_COandH {
    margin-top: 7%;
    margin-bottom: 10%;
}

.COandH_container {
    margin: 0 3%;
}

.COandH_item {
    display: grid;
    grid-template-columns: 1fr 0.5fr 2fr;
    grid-template-rows: max(85px,calc(100vh / 15));
    padding: 2% 2%;
    border-top: solid 1px var(--primary-blue);
    align-items: center;
}

.COandH_item:last-of-type {
    border-bottom: solid 1px var(--primary-blue);
}

.COandH_border {
    width: 1px;
    height: 100%;
    background-color: var(--primary-blue);
}

.COandH_title {
    font-size: var(--fontSize-20px);
}

.COandH_txt {
    line-height: 1.7;
}

.history_container {
    margin-top: 10%;
}

.history_container img {
    margin-top: 5%;
}

.access_container {
    margin-top: 10%;
}

.access_itemBox {
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}

.access_item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.access_item:first-of-type {
    margin-right: 5%;
}

.access_item div {
    margin-bottom: 10%;
}

.access_item iframe {
    width: 100%;
    border-radius: 15px;
}

.access_item_title {
    font-size: var(--fontSize-24px);
    font-weight: 600;
    text-align: center;
    padding: 3% 3%;
    background-color: var(--background-blue);
    border-radius: 10px;
}

.access_item_txt {
    margin-top: 5%;
    padding: 0 3%;
    line-height: 2;
}

.access_item_detail {
    margin-top: 5%;
    padding: 0 3%;
    line-height: 2;
}

/* -------- 会社沿革 -------- */

.historyTimeline {
	margin: 0 auto;
}

.historyRow {
	display: grid;
	grid-template-columns: 42% 16% 42%;
	min-height: 88px;
}

.historyBlock {
	display: flex;
	align-items: center;
}

.historyBlock_left {
	justify-content: flex-start;
}

.historyBlock_right {
	justify-content: flex-start;
}

.historyYear {
	width: 140px;
	flex-shrink: 0;
	font-family: Arial, sans-serif;
	font-size: 56px;
	line-height: 1;
	font-weight: 400;
	color: #b5b5b5;
}

.historyText {
	margin: 0;
	font-size: 16px;
	line-height: 1.7;
	font-weight: 500;
	color: #222;
}

.historyCenter {
	position: relative;
}

/* 中央ライン */
.historyCenter::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 3px;
	background: #0f78b9;
	transform: translateX(-50%);
}

/* 丸 */
.historyCenter::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 16px;
	height: 16px;
	background: #0f78b9;
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

/* 点線：一旦、前回の background-image 指定は削除 */
.historyRow:nth-child(odd) .historyCenter,
.historyRow:nth-child(even) .historyCenter {
	background-image: none;
}

/* 点線共通 */
.historyCenter .historyLine {
	display: none;
}

.historyCenter::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 4px;
	background: #0f78b9;
	transform: translateX(-50%);
}

.historyCenter::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 16px;
	height: 16px;
	background: #0f78b9;
	border-radius: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}

/* 左側の行：2014, 2018, 2020, 2023 */
.historyRow:nth-child(odd) .historyCenter {
	background:
    repeating-linear-gradient(
      to right,
      #0f78b9 0 4px,
      transparent 4px 8px
    )
    left 50% / 50% 1px no-repeat;
}

/* 右側の行：2017, 2019, 2021, 2024 */
.historyRow:nth-child(even) .historyCenter {
	background:
    repeating-linear-gradient(
      to right,
      #0f78b9 0 4px,
      transparent 4px 8px
    )
    right 50% / 50% 1px no-repeat;
}







/* -------------------- 採用情報 -------------------- */

.recruit_FV {
    background-image: url(../images/recruit_FV.webp?0604);
}

.recruit_h3 {
    font-size: var(--fontSize-25px);
    color: var(--primary-blue);
    font-weight: 600;
    line-height: 1.7;
}

/* =======================================
採用情報　採用メッセージ
=========================================*/
.section_recruitMessage {
    margin-top: 5%;
    margin-bottom: 7%;
}

.recruitMessage_txtBox p {
    line-height: 1.7;
    margin-top: 3%;
    margin-bottom: 5%;
}

/* =======================================
採用情報　社員インタビュー
=========================================*/
.recruitInterview_txtBox p {
    line-height: 1.7;
    width: calc(100vw / 2.4);
}

.recruitInterview_txtBox {
    position: relative;
}

.recruitInterview_txtBox::after {
    content: '';
    display: block;
    background-image: url(../images/recruit_interview_img01.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: min(25vw,400px);
    height: 25vw;
    position: absolute;
    top: calc(100vw / -30);
    right: calc(100vw / -10);
    z-index: -1;
}

.recruit_interview_container {
    margin-top: 6%;
    margin-bottom: 10%;
}

.tab_container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: calc(100vw / 2);
}

.tab_content_container {
    margin-top: 10%;
}

.tab_item {
    background-color: #e6e6e6;
    width: clamp(320px,calc(100vw / 4.8),450px);
    height: auto;
    padding: 2% 2%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-blue);
    border-radius: 8px;
    font-size: var(--fontSize-18px);
    transition: all 0.4s ease;
    cursor: pointer;
}

.tab_item.active {
    background-color: #bed8eb;  
}

.tab_item::after {
    content: '';
    display: block;
    width: 12px;
    height: 8px;
    background-color: var(--primary-blue);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    margin-left: 2%;
}

.tab_item:hover {
    opacity: 0.7;
}

.tab_content {
    display: none;
}

.tab_content.show {
    display: block;
}

.interview_name {
    display: flex;
    align-items: center;
    border-bottom: solid 1px var(--primary-blue);
    padding-bottom: 2%;
}

.interview_name p {
    margin-left: 8%;
}

.interview_content {
    margin-top: 5%;
}

.interview_imgBox {
    display: flex;
    justify-content: space-between;
}

.interview_photo{
	flex: 4 1 0;
	margin-right: 80px;
}

.interview_photo img {
    width: 100%;
	max-width: 400px;
    border-radius: 10px;
	margin-bottom: 15px;
}

.interview_txtBox {
    margin-top: 5%;
}

.interview_title {
    font-size: var(--fontSize-24px);
    font-weight: 600;
}

.interview_txt {
    margin-top: 1%;
    line-height: 1.7;
}

.schedule{
	width: 100%;
	max-width: 700px;
	flex: 7 1 0;
}

.schedule img {
    margin-top: 3%;
	width: 100%;
}







/* =======================================
採用情報　働く環境
=========================================*/
.section_WE {
    background-color: var(--background-blue);
    padding-top: 5%;
    padding-bottom: 5%;
}

.WE_block {
    flex: 1;
}

.WE_container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.WE_content {
    padding: 5% 4%;
    background-color: #fff;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.WE_content ul {
    flex: 1;
    margin: 3% 4% 0;
}

.WE_content li {
    text-indent: -0.9rem;
    margin-left: 0.9rem;
    font-size: var(--fontSize-18px);
    margin-top: 2%;
    width: 100%;
}

.WE_content li:first-of-type {
    margin-top: 0;
}

.WE_content li::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    transform: translateY(-35%);
    margin-right: 2%;
}

.WE_content img {
    width: clamp(200px, 15.3vw, 295px);
}

.section_WE .btn_Box {
    margin: 5% auto 0;
}

/* =======================================
採用情報　求める人物像・福利厚生
=========================================*/
.section_recruitICPandEB {
    margin-top: 5%;
    margin-bottom: 5%;
}

.recruitICP_container .recruit_h3,
.recruitEB_container .recruit_h3 {
    text-align: center;
}

.recruitICP_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.recruitICP_content img {
    width: clamp(200px, 28.9vw, 555px);
}

.recruitICP_content ul {
    margin-top: 5%;
}

.recruitICP_content li {
    margin-top: 3%;
}

.recruitICP_content li:first-of-type {
    margin-top: 0;
}

.recruitICP_content p {
    line-height: 1.7;
}

.recruitICP_content span {
    display: block;
    padding-bottom: 2%;
    margin-bottom: 3%;
    border-bottom: solid 1px var(--primary-blue);
    font-size: var(--fontSize-20px);
    font-weight: 600;
}

.recruitEB_container {
    margin-top: 7%;
    margin-bottom: 8%;
}

.recruitEB_container ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 5vh 10vw;
    margin-top: 3%;
}

.recruitEB_container li {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.recruitEB_container img {
    width: clamp(80px, 6.2vw, 120px);
    height: clamp(80px, 5.2vw, 100px);
}

.recruitEB_container p:first-of-type {
    font-size: var(--fontSize-24px);
    font-weight: 600;
    margin-top: 3%;
}

.recruitEB_container p:last-of-type {
    line-height: 1.7;
    margin-top: 3%;
}


/* -------------------- 募集要項 -------------------- */

.jobDescription_FV {
    background-image: url(../images/jobDescription_FV.webp?0612_2);
}

.jobDescription_h3 {
    font-size: var(--fontSize-25px);
    color: var(--primary-blue);
    font-weight: 600;
}

/* =======================================
募集要項　中途採用求人・募集要項　
=========================================*/

.section_MCRandJD {
    margin-top: 5%;
    margin-bottom: 4%;
}

.MCRandJD_container .tab_container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    width: 100%;
}

.MCRandJD_container .tab_item {
    width: auto;
    height: auto;
    padding: 3% 2%;
}

.MCRandJD_container .tab_item {
    background-color: #0f78b9;
    width: calc(100vw /3);
    height: auto;
	display: block;
	text-align: center;
    color: var(--primary-blue);
    border-radius: 8px;
    font-size: var(--fontSize-18px);
    transition: all 0.4s ease;
    cursor: pointer;
	position: relative;
	padding: inherit;
	margin-bottom: 15px;
}

.MCRandJD_container .tab_item a{
	color: #fff;
	display: block;
	padding: 6%;
}

.MCRandJD_container .tab_item::after {
	margin-top: auto;
	height: auto;
}

.MCRandJD_container .tab_item a::after {
    content: '';
    display: block;
    width: 16px;
    height: 10px;
    background-color: #fff;
    clip-path: polygon(0 0, 50% 50%, 0% 100%);
	right: 20px;
	top: calc(50% - 5px);
	position: absolute;
	transition: all 0.4s ease;
}

.MCRandJD_container .tab_item a:hover::after{
	right: 16px;
}

.MCRandJD_container .tab_item:hover {
    opacity: 0.7;
}

.JD_item {
    display: grid;
    grid-template-columns: 1fr 0.5fr 4fr;
    grid-template-rows: auto;
    padding: 1% 3%;
    border-top: solid 1px var(--primary-blue);
}

.JD_item:last-of-type {
    border-bottom: solid 1px var(--primary-blue);
}

.JD_border {
    width: 1px;
    height: 100%;
    background-color: var(--primary-blue);
}

.JD_title,
.JD_txt {
    padding: 3% 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* =======================================
募集要項　応募・選考プロセス　
=========================================*/

.section_AandSP {
    background-color: var(--background-blue);
    padding-top: 5%;
    padding-bottom: 5%;
}

.AandSP_container ul {
    margin-top: 3%;
}

.AandSP_container li {
    display: grid;
    grid-template-columns: 0.7fr 0.7fr 4fr;
    grid-template-rows: calc(100vh / 10);
    gap: 5vw;
    place-items: center start;
    margin-bottom: 3%;
}

.AandSP_content {
    display: flex;
}

.AandSP_stepBox {
    background-image: url(../images/jobDescription_stepBg.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.AandSP_step {
    margin-top: -10px;
    text-align: center;
    font-size: clamp(30px, 2.3vw, 45px);
    color: var(--primary-blue);
    line-height: 1;
}

.AandSP_step span {
    display: block;
    font-size: var(--fontSize-20px);
}

.AandSP_contentTitle {
    font-size: var(--fontSize-20px);
    font-weight: 600;
}

.AandSP_remarksBox {
    margin-top: 5%;
	margin-bottom: 80px;
}

.AandSP_remarksTop {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    justify-content: center;
    gap: 1vw 3vw;
}

.AandSP_remarksTop p:nth-of-type(1), 
.AandSP_remarksTop p:nth-of-type(2){
    padding: 2% 5%;
    background-color: #fff;
    border-radius: 8px;
    text-align: center;
}

.AandSP_remarksTop p:nth-of-type(3), 
.AandSP_remarksTop p:nth-of-type(4){
    padding: 2% 5%;
    border: solid 1px var(--primary-blue);
    border-radius: 8px;
    text-align: center;
}




/* -------------------- プライバシーポリシー -------------------- */

.privacyPolicy_FV {
    background-image: url(../images/privacyPolicy_FV.webp);
}

.privacyPolicy_h3 {
    font-size: var(--fontSize-28px);
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 2%;
}

.section_privacyPolicy {
    margin-top: 5%;
    margin-bottom: 5%;
}

.privacyPolicy_content1,
.privacyPolicy_content2,
.privacyPolicy_content3 {
    margin-top: 5%;
}

.section_privacyPolicy p {
    line-height: 2;
}

.privacyPolicy_content3 div {
    margin-top: 3%;
}

.privacyPolicy_content3 a {
    color: var(--primary-blue);
    text-decoration: underline;
    transition: 0.4s;
}

.privacyPolicy_content3 a:hover {
    opacity: 0.7;
}


/* -------------------- ニュース詳細ページ -------------------- */

/* =======================================
ニュース詳細
=========================================*/
.notice {
    background-color: var(--background-blue);
    padding-top: calc(100vh / 10);
    padding-bottom: 5%;
}

.notice_bgWh {
    margin: 3% auto 0;
    padding: 3%;
    background-color: #fff;
}

.notice_title {
    padding-bottom: 2%;
    border-bottom: solid 1px var(--primary-blue);
}

.notice_title h1 {
    font-size: var(--fontSize-24px);
    font-weight: 600;
}

.notice_title p a{
    font-size: var(--fontSize-18px);
    font-weight: 600;
    color: var(--primary-blue);
    margin-top: 2%;
}

.notice_title span {
    font-family: "Outfit", sans-serif;
    color: #000;
    margin-right: 2%;
}

.notice_content {
    justify-content: space-between;
    gap: 2vw;
    margin-top: 5%;
}

.notice_content p {
    line-height: 2;
    margin-bottom: 3%;
}

.notice_content a {
    display: block;
    color: var(--primary-blue);
    text-decoration: underline;
    cursor: pointer;
    transition: 0.4s;
}

.notice_content a:hover {
    opacity: 0.65;
}

.notice_img {
    width: clamp(350px, 20vw, 415px);
    height: clamp(200px, 15vw, 300px);
    background-color: #999999;
    border-radius: 10px;
    flex-shrink: 0;
    margin-top: 5%;
}

.notice_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2vw;
    margin-top: 5%;
}

.notice_newsArchiveList_btn a {
    display: block;
    padding: 5% 5%;
    background-color: var(--primary-blue);
    border-radius: 8px;
    color: #fff;
    width: 10vw;
    text-align: center;
}

.notice_prevBtn a,
.notice_nextBtn a {
    display: block;
    width: 55px;
    height: 55px;
    border: solid 1px var(--primary-blue);
    border-radius: 50%;
    position: relative;
    transition: 0.4s;
    cursor: pointer;
}

.notice_prevBtn a::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-top: solid 2px var(--primary-blue);
    border-left: solid 2px var(--primary-blue);
    transform: rotate(-45deg) translateY(-80%);
    position: absolute;
    top: 50%;
    left: 50%;
    transition: 0.4s;
}


.notice_nextBtn a::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-top: solid 2px var(--primary-blue);
    border-right: solid 2px var(--primary-blue);
    transform: rotate(45deg) translateX(-80%);
    position: absolute;
    top: 50%;
    left: 50%;
    transition: 0.4s;
}


.notice_prevBtn a:hover,
.notice_nextBtn a:hover {
    background-color: var(--primary-blue);
}

.notice_prevBtn a:hover::before,
.notice_nextBtn a:hover::before {
    border-top:solid 2px #fff;
}

.notice_prevBtn a:hover::before {
    border-left:solid 2px #fff;
}

.notice_nextBtn a:hover::before {
    border-right:solid 2px #fff;
}


/* -------------------- 先進モビリティサービス概要ページ -------------------- */

/* =======================================
サービス概要
=========================================*/
.service {
    background-color: var(--background-blue);
    padding-top: calc(100vh / 10);
    padding-bottom: 5%;
}

.service_bgWh {
    background-color: #fff;
    padding: 3% 3%;
    margin-top: 5%;
}

.service_title {
    padding-bottom: 2%;
    border-bottom: solid 1px var(--primary-blue);
}

.service_title h1 {
    font-size: var(--fontSize-24px);
    font-weight: 600;
}

.service_content {
    margin-top: 3%;
}

.service_content {
    display: flex;
    align-items: baseline;
}

.service_content:nth-of-type(3) {
    margin-top: 5%;
}

.service_content::before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    margin-right: 2%;
}

.service_content div {
    flex: 1;
}

.service_content span {
    display: block;
}

.service_content ul {
    display: flex;
    gap: 5vw;
    justify-content: center;
    margin-top: 3%;
    padding: 0 5%;
}

.service_content li {
    padding: 1% 5%;
    background-color: var(--background-blue);
    border-radius: 8px;
    flex: 1;
    text-align: center;
}

.service_img {
    width: calc(100vw / 2.5);
    margin: 3% auto 0;
}

.service .btn_Box {
    margin-top: 5%;
}