/* ======================== タカハシテクノについて ======================== */

/*  経営理念  */

.companyPhilosophy__image{
padding:12px;
background:#fff;
border:1px solid #dcdcdc;
box-shadow:0 8px 24px rgba(0,0,0,.04);
}

.companyPhilosophy__image img{
display:block;
width:100%;
height:auto;
}

@media(max-width:767px){

.companyPhilosophy{
margin-top:50px;
}

}

/*  タカハシテクノの強み  */

.companyStrength{
margin-top:70px;
}

.companyStrength__wrap{
background:#fff;
overflow:hidden;
}

.companyStrength__image img{
display:block;
width:100%;
height:auto;
transition:.4s;
}

.companyStrength__content{
padding:35px 0;
}

.companyStrength__content p{
line-height:2;
color:#555;
}

@media(max-width:767px){

.companyStrength{
margin-top:50px;
}

.companyStrength__content{
padding:24px 0;
}

.companyStrength__content p{
font-size:.95rem;
line-height:1.9;
}

}

/* ======================== トップメッセージ ======================== */

.message__body{
font-size:17px;
line-height:2.0;
color:#444;
}

.message__body p{
margin:0 0 36px;
}

.message__list{
margin:40px 0;
padding:0;
list-style:none;
}

.message__list li{
display:flex;
align-items:flex-start;
margin-bottom:10px;
}

.message__list .bullet{
flex:0 0 1.4em;
font-size:18px;
line-height:2;
}

.message__list .text{
flex:1;
line-height:2;
word-break:break-word;
}

.message__signature{
margin-top:70px;
text-align:right;
}

.message__signature img{
display:block;
margin-left:auto;
max-width:220px;
width:100%;
height:auto;
}

.message__signature p{
margin-top:12px;
font-size:17px;
font-weight:600;
color:#222;
}

@media(max-width:768px){

.message__body{
font-size:15px;
line-height:2;
}

.message__body p{
margin-bottom:28px;
}

.message__list{
margin:30px 0;
}

.message__list li{
margin-bottom:16px;
}

.message__list .bullet{
flex:0 0 1.3em;
font-size:16px;
}

.message__signature{
margin-top:50px;
}

.message__signature img{
max-width:170px;
}

.message__signature p{
font-size:15px;
}

}

@media(max-width:480px){

.message__body{
font-size:14px;
line-height:1.9;
}

.message__signature img{
max-width:140px;
}

.message__signature p{
font-size:14px;
}

}

/* ======================== 会社概要(表) ======================== */

.company-table{
    width:100%;
    border-collapse:separate;
    border-spacing:0;
    border:1px solid #e6e6e6;
    overflow:hidden;
    background:#fff;
}

.company-table tr:not(:last-child) th,
.company-table tr:not(:last-child) td{
    border-bottom:1px solid #e6e6e6;
}

.company-table th{
    width:220px;
    padding:14px;
    background:#f5f7fa;
    color:#000;
    font-weight:700;
    text-align:left;
    vertical-align:top;
}

.company-table td{
    padding:14px 30px;
    color:#000;
    line-height:2;
    font-weight:400;
}

/* 役員 */

.officer-list{
    margin:0;
    padding:0;
    list-style:none;
}

.officer-list li{
    display:grid;
    grid-template-columns:140px 1fr;
    gap:14px;
}

.officer-list li+li{
    margin-top:10px;
}

.officer-list__position{
    font-weight:500;
    color:#000;
}

.officer-list__name{
    color:#000;
}

@media screen and (max-width:768px){

.company-table th{
width:32%;
min-width:80px;
padding:12px;
font-size:13px;
}

.company-table td{
padding:12px;
font-size:14px;
line-height:1.7;
}

.officer-list li{
display:grid;
grid-template-columns:90px 1fr;
gap:12px;
}

.officer-list__position{
font-size:13px;
}

.officer-list__name{
font-size:14px;
}

}

/* ======================== 事業概要(製品一覧) ======================== */

.productHotspot{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    padding:0;
    box-sizing:border-box;
}

.productHotspot__image{
    position:relative;
    width:100%;
    margin:0;
    padding:0;
    line-height:0;
}

.productHotspot__image>img{
    display:block;
    width:100%;
    height:auto;
    margin:0;
    padding:0;
}

.productHotspot__layer{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
}

.productHotspot__point{
    position:absolute;
    left:var(--x);
    top:var(--y);
    width:46px;
    height:58px;
    margin:0;
    padding:0;
    border:0;
    background:transparent;
    transform:translate(-50%,-50%);
    cursor:pointer;
    appearance:none;
    -webkit-appearance:none;
    -webkit-tap-highlight-color:transparent;
    touch-action:manipulation;
    z-index:2;
}

.productHotspot__pin{
    position:absolute;
    top:0;
    left:50%;
    width:40px;
    height:40px;
    transform:translateX(-50%);
    border:3px solid #005bac;
    border-radius:50%;
    background:#fff;
    box-sizing:border-box;
    transition:
        background-color .25s ease,
        border-color .25s ease,
        transform .25s ease;
}

.productHotspot__pin::before{
    content:"";
    position:absolute;
    top:50%;
    left:50%;
    width:11px;
    height:11px;
    transform:translate(-50%,-50%);
    border-radius:50%;
    background:#005bac;
}

.productHotspot__pin::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:-13px;
    transform:translateX(-50%);
    width:0;
    height:0;
    border-left:10px solid transparent;
    border-right:10px solid transparent;
    border-top:14px solid #005bac;
}

@media (hover:hover) and (pointer:fine){

    .productHotspot__point::before{
        content:"";
        position:absolute;
        top:0;
        left:50%;
        width:40px;
        height:40px;
        transform:translateX(-50%);
        border:1px solid rgba(0,91,172,.45);
        border-radius:50%;
        opacity:0;
        pointer-events:none;
    }

    .productHotspot__point:hover .productHotspot__pin{
        transform:translateX(-50%) scale(1.12);
        background:#005bac;
        border-color:#005bac;
    }

    .productHotspot__point:hover .productHotspot__pin::before{
        background:#fff;
    }

    .productHotspot__point:hover::before{
        animation:hotspotPulse 1.2s ease-out infinite;
    }

}

@keyframes hotspotPulse{

    0%{
        opacity:.65;
        transform:translateX(-50%) scale(1);
    }

    100%{
        opacity:0;
        transform:translateX(-50%) scale(1.7);
    }

}

.productHotspot__caption{
    margin:10px 0 0;
    padding:0;
    font-size:12px;
    line-height:1.6;
    color:#777;
}

.productModalTest{
    position:fixed;
    inset:0;
    z-index:99999;
    display:none;
    align-items:center;
    justify-content:center;
    width:100%;
    height:100%;
    margin:0;
    padding:40px;
    box-sizing:border-box;
}

.productModalTest.is-open{
    display:flex;
}

.productModalTest__overlay{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.72);
    cursor:pointer;
}

.productModalTest__window{
    position:relative;
    z-index:2;
    width:100%;
    max-width:720px;
    max-height:calc(100vh - 80px);
    margin:0;
    padding:0;
    overflow-x:hidden;
    overflow-y:auto;
    background:#fff;
    box-sizing:border-box;
    animation:productModalFadeIn .3s ease;
}

@keyframes productModalFadeIn{

    from{
        opacity:0;
        transform:translateY(15px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

.productModalTest__close{
    position:absolute;
    top:0;
    right:0;
    z-index:5;
    display:flex;
    align-items:center;
    justify-content:center;
    width:58px;
    height:58px;
    margin:0;
    padding:0;
    border:0;
    background:#005bac;
    color:#fff;
    cursor:pointer;
    appearance:none;
    -webkit-appearance:none;
    -webkit-tap-highlight-color:transparent;
    touch-action:manipulation;
}

.productModalTest__close span{
    position:absolute;

    top:50%;
    left:50%;

    width:24px;
    height:1px;

    background:#fff;

    pointer-events:none;
}

.productModalTest__close span:first-child{
    transform:translate(-50%,-50%) rotate(45deg);
}

.productModalTest__close span:last-child{
    transform:translate(-50%,-50%) rotate(-45deg);
}

@media (hover:hover) and (pointer:fine){

    .productModalTest__close{
        transition:background-color .25s ease;
    }

    .productModalTest__close:hover{
        background:#003f78;
    }

}

.productModalTest__image{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    height:360px;
    margin:0;
    padding:35px 35px 0;
    box-sizing:border-box;
}

.productModalTest__image img{
    display:block;
    width:100%;
    height:100%;
    margin:0;
    padding:0;
    object-fit:contain;
    object-position:center;
    background:#fff;
}

.productModalTest__body{
    width:100%;
    margin:0;
    padding:30px 50px 50px;
    box-sizing:border-box;
}

.productModalTest__category{
    margin:0 0 10px;
    padding:0;
    font-size:11px;
    line-height:1.5;
    letter-spacing:.18em;
    color:#005bac;
    font-weight:700;
}

.productModalTest__title{
    display:block;
    width:100%;
    margin:0;
    padding:0;
    color:#222;
    font-size:28px;
    line-height:1.5;
    font-weight:700;
    visibility:visible;
    opacity:1;
}

.productModalTest__button{
    display:flex;
    align-items:center;
    justify-content:space-between;
    width:100%;
    max-width:360px;
    min-height:58px;
    margin:35px auto 0;
    padding:0 25px;
    border:1px solid #005bac;
    background:#005bac;
    color:#fff;
    text-decoration:none;
    box-sizing:border-box;
    font-size:14px;
    line-height:1.5;
    font-weight:700;
    letter-spacing:.05em;
    -webkit-tap-highlight-color:transparent;
    touch-action:manipulation;
}

.productModalTest__arrow{
    font-size:20px;
    line-height:1;
}

@media (hover:hover) and (pointer:fine){

    .productModalTest__button{
        transition:
            background-color .25s ease,
            color .25s ease;
    }

    .productModalTest__button:hover{
        background:#fff;
        color:#005bac;
    }

}

@media screen and (max-width:991px){

    .productHotspot{
        padding:0;
    }

    .productHotspot__point{
        width:42px;
        height:53px;
    }

    .productHotspot__pin{
        width:36px;
        height:36px;
        border-width:2px;
    }

    .productHotspot__pin::before{
        width:10px;
        height:10px;
    }

    .productHotspot__pin::after{
        bottom:-11px;

        border-left-width:9px;
        border-right-width:9px;
        border-top-width:12px;
    }

    .productModalTest{
        padding:30px;
    }

    .productModalTest__window{
        max-width:650px;
        max-height:calc(100vh - 60px);
    }

    .productModalTest__image{
        height:320px;
    }

}

@media screen and (max-width:767px){

    .productHotspot{
        padding:0;
    }

    .productHotspot__caption{
        margin-top:8px;
        font-size:11px;
    }

    .productHotspot__point{
        width:38px;
        height:48px;
    }

    .productHotspot__pin{
        width:32px;
        height:32px;

        border-width:2px;

        transition:none !important;
    }

    .productHotspot__point:hover .productHotspot__pin{
        transform:translateX(-50%) !important;

        background:#fff !important;
        border-color:#005bac !important;
    }

    .productHotspot__point:hover .productHotspot__pin::before{
        background:#005bac !important;
    }

    .productHotspot__point:hover::before{
        display:none !important;
        animation:none !important;
        opacity:0 !important;
    }

    .productModalTest{
        padding:15px;
    }

    .productModalTest__window{
        width:100%;
        max-width:none;
        max-height:calc(100vh - 30px);
    }

    .productModalTest__close{
        width:48px;
        height:48px;
        background:#005bac !important;
        transition:none !important;
    }

    .productModalTest__close:hover{
        background:#005bac !important;
    }

    .productModalTest__image{
        height:230px;

        padding:25px 20px 0;
    }

    .productModalTest__body{
        padding:25px 25px 30px;
    }

    .productModalTest__category{
        font-size:10px;
    }

    .productModalTest__title{
        display:block;
        font-size:22px;
        color:#222 !important;
        visibility:visible !important;
        opacity:1 !important;
    }

    .productModalTest__button{
        min-height:52px;
        margin-top:28px;
        background:#005bac !important;
        color:#fff !important;
        transition:none !important;
    }

    .productModalTest__button:hover{
        background:#005bac !important;
        color:#fff !important;
    }

}

@media screen and (max-width:480px){

    .productHotspot{
        padding:0;
    }

    .productHotspot__point{
        width:34px;
        height:43px;
    }

    .productHotspot__pin{
        width:28px;
        height:28px;
    }

    .productHotspot__pin::before{
        width:7px;
        height:7px;
    }

    .productHotspot__pin::after{
        bottom:-9px;
        border-left-width:7px;
        border-right-width:7px;
        border-top-width:10px;
    }

    .productModalTest{
        padding:10px;
    }

    .productModalTest__window{
        max-height:calc(100vh - 20px);
    }

    .productModalTest__image{
        height:190px;
        padding:20px 15px 0;
    }

    .productModalTest__body{
        padding:20px 20px 25px;
    }

    .productModalTest__title{
        font-size:20px;
    }

    .productModalTest__close{
        width:44px;
        height:44px;
    }

}

html{
    scrollbar-gutter:stable;
}

/* ======================== 事業概要(商品詳細) ======================== */

.Business{
    width:100%;
    margin:50px 0;
    padding:0;
    box-sizing:border-box;
}

.BusinessField{
    width:100%;
    margin:20px 0;
    padding:0;
    border-top:1px solid #d5dce2;
    box-sizing:border-box;
}

.BusinessField:last-child{
    margin-bottom:0;
}

.BusinessProduct{
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(400px,48%);
    align-items:start;
    gap:70px;
    width:100%;
    margin:0 0 90px;
    padding:0;
    box-sizing:border-box;
}

.BusinessProduct:last-child{
    margin-bottom:0;
}

.BusinessProduct__content{
    width:100%;
    margin:0;
    padding:0;
    box-sizing:border-box;
}

.BusinessProduct__text{
    margin:0;
    padding:0;
    font-size:15px;
    line-height:2;
    color:#444;
}

.BusinessProduct__image{
    position:relative;
    width:100%;
    margin:0;
    padding:0;
    line-height:0;
    box-sizing:border-box;
}

.BusinessProduct__image>img{
    display:block;
    width:100%;
    height:auto;
    margin:0;
    padding:0;
    object-fit:contain;
    box-sizing:border-box;
}

.BusinessProduct__hotspots{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    margin:0;
    padding:0;
    z-index:2;
}

.BusinessProduct__hotspot{
    position:absolute;
    left:var(--x);
    top:var(--y);
    width:34px;
    height:42px;
    margin:0;
    padding:0;
    border:0;
    background:transparent;
    transform:translate(-50%,-50%);
    cursor:pointer;
    appearance:none;
    -webkit-appearance:none;
    -webkit-tap-highlight-color:transparent;
    touch-action:manipulation;
    z-index:3;
}

.BusinessProduct__hotspot span{
    position:absolute;
    top:0;
    left:50%;
    display:block;
    width:24px;
    height:24px;
    margin:0;
    padding:0;
    transform:translateX(-50%) rotate(45deg);
    border:2px solid #005bac;
    border-radius:
        40% 60% 0% 100% /
        40% 100% 0% 60%;
    background:#005bac;
    box-sizing:content-box;
    transition:
        background-color .25s ease,
        border-color .25s ease,
        transform .25s ease;
}

.BusinessProduct__hotspot span::before{
    content:"";
    position:absolute;
    top:18%;
    left:18%;
    width:9px;
    height:9px;
    margin:0;
    padding:0;
    transform:none;
    border:0;
    border-radius:50%;
    background:#fff;
    box-sizing:border-box;
}

@media (hover:hover) and (pointer:fine){

    .BusinessProduct__hotspot:hover span{
        transform:
            translateX(-50%)
            rotate(45deg)
            scale(1.1);

        background:#fff;
        border-color:#005bac;
    }

    .BusinessProduct__hotspot:hover span::before{
        background:#005bac;
    }

}


/* ==========================================
   Tablet
========================================== */

@media screen and (max-width:991px){

    .BusinessProduct{
        grid-template-columns:minmax(0,1fr) minmax(320px,45%);
        gap:45px;
    }

    .BusinessProduct__hotspot{
        width:30px;
        height:38px;
    }

    .BusinessProduct__hotspot span{
        width:22px;
        height:22px;
        border-width:2px;
    }

    .BusinessProduct__hotspot span::before{
        width:8px;
        height:8px;
    }

}


/* ==========================================
   Smartphone
========================================== */

@media screen and (max-width:767px){

    .BusinessField{
        margin-bottom:60px;
        padding-top:60px;
        border-top:1px solid #d5dce2;
    }

    .BusinessProduct{
        display:flex;
        flex-direction:column;
        gap:25px;
        margin-bottom:60px;
    }

    .BusinessProduct__text{
        font-size:14px;
        line-height:1.9;
    }

    .BusinessProduct__image{
        width:100%;
    }


    /* ======================================
       Hotspot
    ====================================== */

    .BusinessProduct__hotspot{
        width:26px;
        height:33px;

        transform:translate(-50%,-50%);
    }

    .BusinessProduct__hotspot span{
        width:19px;
        height:19px;

        border-width:1.5px;

        transform:
            translateX(-50%)
            rotate(45deg);

        transition:none !important;
    }

    .BusinessProduct__hotspot span::before{
        width:7px;
        height:7px;
    }


    /* ======================================
       SP Hover完全無効
    ====================================== */

    .BusinessProduct__hotspot:hover{
        transform:translate(-50%,-50%) !important;
        background:transparent !important;
    }

    .BusinessProduct__hotspot:hover span{
        transform:
            translateX(-50%)
            rotate(45deg) !important;

        background:#005bac !important;
        border-color:#005bac !important;
    }

    .BusinessProduct__hotspot:hover span::before{
        background:#fff !important;
    }

}


/* ==========================================
   Small Smartphone
========================================== */

@media screen and (max-width:480px){

    .BusinessField{
        margin-bottom:50px;
        padding-top:30px;
    }

    .BusinessProduct{
        gap:20px;
        margin-bottom:50px;
    }

    .BusinessProduct__hotspot{
        width:24px;
        height:30px;
    }

    .BusinessProduct__hotspot span{
        width:18px;
        height:18px;

        border-width:1.5px;
    }

    .BusinessProduct__hotspot span::before{
        width:6px;
        height:6px;
    }


    /* ======================================
       Hover完全無効
    ====================================== */

    .BusinessProduct__hotspot:hover{
        transform:translate(-50%,-50%) !important;
    }

    .BusinessProduct__hotspot:hover span{
        transform:
            translateX(-50%)
            rotate(45deg) !important;

        background:#005bac !important;
        border-color:#005bac !important;
    }

    .BusinessProduct__hotspot:hover span::before{
        background:#fff !important;
    }

}


/* ==========================================
   Business Product Modal
========================================== */

.businessProductModal{
    position:fixed;

    inset:0;

    z-index:99998;

    display:none;

    align-items:center;
    justify-content:center;

    width:100%;
    height:100%;

    margin:0;
    padding:40px;

    box-sizing:border-box;
}

.businessProductModal.is-open{
    display:flex;
}


/* ==========================================
   Overlay
========================================== */

.businessProductModal__overlay{
    position:absolute;

    inset:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,.72);

    cursor:pointer;
}


/* ==========================================
   Modal Window
========================================== */

.businessProductModal__window{
    position:relative;

    z-index:2;

    width:100%;
    max-width:720px;

    max-height:calc(100vh - 80px);

    margin:0;
    padding:0;

    overflow-x:hidden;
    overflow-y:auto;

    background:#fff;

    box-sizing:border-box;

    animation:businessProductModalFadeIn .3s ease;
}


@keyframes businessProductModalFadeIn{

    from{
        opacity:0;
        transform:translateY(15px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}


/* ==========================================
   Close
========================================== */

.businessProductModal__close{
    position:absolute;

    top:0;
    right:0;

    z-index:5;

    display:flex;
    align-items:center;
    justify-content:center;

    width:58px;
    height:58px;

    margin:0;
    padding:0;

    border:0;

    background:#005bac;
    color:#fff;

    cursor:pointer;

    appearance:none;
    -webkit-appearance:none;

    -webkit-tap-highlight-color:transparent;
    touch-action:manipulation;
}

.businessProductModal__close span{
    position:absolute;

    top:50%;
    left:50%;

    width:24px;
    height:1px;

    background:#fff;

    pointer-events:none;
}

.businessProductModal__close span:first-child{
    transform:
        translate(-50%,-50%)
        rotate(45deg);
}

.businessProductModal__close span:last-child{
    transform:
        translate(-50%,-50%)
        rotate(-45deg);
}


/* ==========================================
   PC Close Hover
========================================== */

@media (hover:hover) and (pointer:fine){

    .businessProductModal__close{
        transition:background-color .25s ease;
    }

    .businessProductModal__close:hover{
        background:#003f78;
    }

}


/* ==========================================
   Modal Image
========================================== */

.businessProductModal__image{
    display:flex;

    align-items:center;
    justify-content:center;

    width:100%;
    height:360px;

    margin:0;
    padding:35px 35px 0;

    box-sizing:border-box;
}

.businessProductModal__image img{
    display:block;

    width:100%;
    height:100%;

    margin:0;
    padding:0;

    object-fit:contain;
    object-position:center;

    background:#fff;
}


/* ==========================================
   Modal Body
========================================== */

.businessProductModal__body{
    width:100%;

    margin:0;
    padding:30px 50px 50px;

    box-sizing:border-box;
}


/* ==========================================
   Category
========================================== */

.businessProductModal__category{
    margin:0 0 10px;
    padding:0;

    font-size:11px;
    line-height:1.5;

    letter-spacing:.18em;

    color:#005bac;

    font-weight:700;
}


/* ==========================================
   Title
========================================== */

.businessProductModal__title{
    display:block;

    width:100%;

    margin:0;
    padding:0;

    color:#222;

    font-size:28px;
    line-height:1.5;

    font-weight:700;

    visibility:visible;
    opacity:1;
}


/* ==========================================
   Tablet Modal
========================================== */

@media screen and (max-width:991px){

    .businessProductModal{
        padding:30px;
    }

    .businessProductModal__window{
        max-width:650px;
        max-height:calc(100vh - 60px);
    }

    .businessProductModal__image{
        height:320px;
    }

}


/* ==========================================
   Smartphone Modal
========================================== */

@media screen and (max-width:767px){

    .businessProductModal{
        padding:15px;
    }

    .businessProductModal__window{
        width:100%;
        max-width:none;

        max-height:calc(100vh - 30px);
    }


    /* --------------------------------------
       Close
    -------------------------------------- */

    .businessProductModal__close{
        width:48px;
        height:48px;

        background:#005bac !important;

        transition:none !important;
    }

    .businessProductModal__close:hover{
        background:#005bac !important;
    }


    /* --------------------------------------
       Image
    -------------------------------------- */

    .businessProductModal__image{
        height:230px;

        padding:25px 20px 0;
    }


    /* --------------------------------------
       Body
    -------------------------------------- */

    .businessProductModal__body{
        padding:25px 25px 30px;
    }

    .businessProductModal__category{
        font-size:10px;
    }

    .businessProductModal__title{
        display:block;

        font-size:22px;

        color:#222 !important;

        visibility:visible !important;
        opacity:1 !important;
    }

}


/* ==========================================
   Small Smartphone Modal
========================================== */

@media screen and (max-width:480px){

    .businessProductModal{
        padding:10px;
    }

    .businessProductModal__window{
        max-height:calc(100vh - 20px);
    }

    .businessProductModal__image{
        height:190px;

        padding:20px 15px 0;
    }

    .businessProductModal__body{
        padding:20px 20px 25px;
    }

    .businessProductModal__title{
        font-size:20px;
    }

    .businessProductModal__close{
        width:44px;
        height:44px;
    }

}


/* ==========================================
   Modal Lock
========================================== */

html.modal-lock,
body.modal-lock{
    overflow:hidden;
    touch-action:none;
}


/* ==========================================
   Scrollbar Layout Stability
========================================== */

html{
    scrollbar-gutter:stable;
}

/*製造可能範囲
---------------------------------------------------------------------------*/

/* ==========================================
   製造可能範囲
========================================== */

.business_range_block{
    position:relative;
    margin-top:80px;
    padding-top:70px;
    border-top:1px solid #d9d9d9;
}


/* ==========================================
   TABLE
========================================== */

.info_table{
    width:100%;
    border:1px solid #ddd;
    box-sizing:border-box;
}

.info_row{
    display:grid;
    grid-template-columns:1fr 1.5fr 1fr;
    border-bottom:1px solid #ddd;
}

.info_row:last-child{
    border-bottom:none;
}

.info_cell{
    padding:18px 20px;
    border-right:1px solid #ddd;
    box-sizing:border-box;
    line-height:1.8;
    font-size:.95rem;
}

.info_cell:last-child{
    border-right:none;
}

.info_head{
    background:#f7f7f7;
    font-weight:700;
    color:#333;
}


/* ==========================================
   プレス加工の種類
========================================== */

.business_processing_block{
    margin-top:80px;
    padding-top:70px;
    border-top:1px solid #d9d9d9;
}

.processing_type{
    width:100%;
    max-width:700px;
    margin:45px auto 100px;
    text-align:center;
}

.processing_type_img{
    display:block;
    width:100%;
    height:auto;
}


/* ==========================================
   TABLET
========================================== */

@media screen and (max-width:900px){

    .info_row{
        grid-template-columns:1fr 1.5fr;
    }

    .info_row .info_cell:nth-child(3){
        grid-column:2;
        border-top:1px solid #ddd;
        border-right:none;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media screen and (max-width:768px){

    .business_range_block{
        margin-top:60px;
        padding-top:50px;
    }

    .business_processing_block{
        margin-top:60px;
        padding-top:50px;
    }

    .info_row{
        display:block;
        border-bottom:2px solid #ddd;
    }

    .info_cell{
        padding:14px 16px;
        border-right:none;
        border-bottom:1px solid #ddd;
        font-size:.9rem;
        line-height:1.7;
    }

    .info_cell:last-child{
        border-bottom:none;
    }

    .info_head{
        padding:12px 16px;
    }

    .processing_type{
        margin-top:30px;
        margin-bottom:60px;
    }

}

/*アクセス(表)
---------------------------------------------------------------------------*/

.access_tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 52px;
}

.access_tab {
    appearance: none;
    border: 1px solid #d9d9d9;
    background: #fff;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    min-height: 58px;
    padding: 14px 20px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: .03em;
    color: #333;
    transition:
        background .25s ease,
        border-color .25s ease,
        color .25s ease,
        transform .2s ease;
}

.access_tab:hover {
    border-color: rgba(0, 45, 120, .4);
}

.access_tab.is-active {
    color: #fff;
    border-color: transparent;

    background: #005bac;
}

.access_tab.is-active::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -14px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 14px solid #005bac;
}

.access_panel {
    display: none;
}

.access_panel.is-active {
    display: block;
}

.access_card {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 50px;
    align-items: start;
}

.access_card__map {
    overflow: hidden;
    border: 1px solid #e5e5e5;
}

.access_card__map iframe,
.access_card__map img {
    width: 100%;
    height: 420px;
    display: block;
    border: 0;
    object-fit: cover;
}

.access_info {
    margin-top: 24px;
    border-top: 1px solid #e5e5e5;
}

.access_row {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 12px;
    padding: 22px 0;
    border-bottom: 1px solid #e5e5e5;
}

.access_row dt {
    font-weight: 600;
    color: #333;
    letter-spacing: .02em;
}

.access_row dd {
    margin: 0;
    color: #444;
    line-height: 1.9;
}

.access_detail {
    margin-top: 50px;
}

.access_detail__image {
    max-width: 700px;
    margin: 0 auto;
    margin-top: 50px;
    border: 1px solid #e5e5e5;
    overflow: hidden;
}

.access_detail__image img {
    width: 100%;
    display: block;
}

/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .access_card {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .access_card__map iframe,
    .access_card__map img {
        height: 340px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .access_section {
        margin-top: 50px;
    }

    /* ボタン縦積み */
    .access_tabs {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 36px;
    }

    .access_tab {
        min-height: 50px;
        padding: 12px 16px;

        font-size: 14px;
    }

    /* 三角小さめ */
    .access_tab.is-active::after {
        bottom: -10px;

        border-left-width: 10px;
        border-right-width: 10px;
        border-top-width: 10px;
    }

    .access_card__map iframe,
    .access_card__map img {
        height: 260px;
    }

    .access_row {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 16px 0;
    }

    .access_row dt {
        font-size: 13px;
    }

    .access_row dd {
        font-size: 14px;
    }

    .access_detail {
        margin-top: 40px;
    }
}

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

/* =========================================================
   History Wrapper
========================================================= */

.history_wrapper{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    padding:20px 20px 80px;
    box-sizing:border-box;
    position:relative;
}


/* =========================================================
   History Navigation
========================================================= */

.history_nav{
    position:sticky;
    top:120px;
    width:180px;
    height:max-content;
    box-sizing:border-box;
    float:left;
}

.history_nav__label{
    margin-bottom:18px;
    color:#1e3a8a;
    font-size:18px;
    font-weight:700;
    line-height:1.4;
}

.history_nav ul{
    list-style:none;
    margin:0;
    padding:0;
}

.history_nav li{
    margin:0;
    padding:0;
}

.history_nav a{
    display:block;
    padding:6px 12px;
    color:#555;
    font-size:15px;
    font-weight:500;
    line-height:1.5;
    text-decoration:none;
    border-left:2px solid transparent;
    transition:color .25s ease,background-color .25s ease,border-color .25s ease;
}

.history_nav a:hover{
    color:#1e3a8a;
    background:rgba(30,58,138,.06);
}

.history_nav a.active{
    color:#1e3a8a;
    font-weight:700;
    border-left-color:#1e3a8a;
    background:rgba(30,58,138,.08);
}


/* =========================================================
   History Content
========================================================= */

.history_content{
    width:800px;
    max-width:calc(100% - 260px);
    margin-left:260px;
    position:relative;
    box-sizing:border-box;
}


/* =========================================================
   Timeline
========================================================= */

.history_content::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    bottom:0;
    width:2px;
    background:#1e3a8a;
    pointer-events:none;
}


/* =========================================================
   Year Block
========================================================= */

.history_year_block{
    position:relative;
    margin:0 0 100px;
    padding:0 0 0 55px;
    scroll-margin-top:130px;
}

.history_year_block:last-child{
    margin-bottom:0;
}


/* =========================================================
   Year Title
========================================================= */

.year_title{
    margin:0 0 40px;
    color:#1e3a8a;
    font-size:32px;
    font-weight:700;
    line-height:1.3;
}


/* =========================================================
   History Item
========================================================= */

.history_item{
    position:relative;
    margin:0 0 40px;
    padding-left:45px;
    box-sizing:border-box;
}

.history_item:last-child{
    margin-bottom:0;
}


/* =========================================================
   Timeline Dot
========================================================= */

.history_item::before{
    content:"";
    position:absolute;
    left:-1px;
    top:8px;
    width:14px;
    height:14px;
    background:#1e3a8a;
    border-radius:50%;
    transform:translateX(-50%);
    z-index:2;
}


/* =========================================================
   Timeline Line
========================================================= */

.history_item::after{
    content:"";
    position:absolute;
    left:0;
    top:14px;
    width:45px;
    height:2px;
    background:#1e3a8a;
}


/* =========================================================
   Existing HTML Dot / Line
========================================================= */

.history_item > .dot,
.history_item > .line{
    display:none;
}


/* =========================================================
   Content
========================================================= */

.history_item .content{
    width:100%;
    box-sizing:border-box;
}


/* =========================================================
   Date
========================================================= */

.date{
    margin:0 0 7px;
    color:#222;
    font-size:15px;
    font-weight:700;
    line-height:1.6;
    letter-spacing:.02em;
}


/* =========================================================
   Text
========================================================= */

.text{
    margin:0;
    color:#444;
    font-size:15px;
    font-weight:400;
    line-height:1.9;
    letter-spacing:.02em;
}


/* =========================================================
   Link
========================================================= */

.text a{
    color:#1e3a8a;
    text-decoration:underline;
    text-underline-offset:3px;
}

.text a:hover{
    text-decoration:none;
}


/* =========================================================
   Images
========================================================= */

.history_item img{
    display:block;
    width:auto;
    max-width:520px;
    height:auto;
    margin:18px 0 0;
    border:1px solid #e5e5e5;
    border-radius:0;
    box-sizing:border-box;
}


/* =========================================================
   1500px以下
========================================================= */

@media screen and (max-width:1499px){

    .history_wrapper{
        max-width:1200px;
    }

    .history_nav{
        left:0;
        width:170px;
    }

    .history_content{
        width:calc(100% - 210px);
        margin-left:210px;
    }

}


/* =========================================================
   1200px以下
========================================================= */

@media screen and (max-width:1200px){

    .history_wrapper{
        max-width:1050px;
        padding-left:20px;
        padding-right:20px;
    }

    .history_nav{
        width:150px;
    }

    .history_nav a{
        padding:5px 10px;
        font-size:14px;
    }

    .history_content{
        width:calc(100% - 180px);
        max-width:800px;
        margin-left:180px;
    }

    .history_year_block{
        padding-left:45px;
    }

    .year_title{
        font-size:30px;
    }

}


/* =========================================================
   1050px以下
========================================================= */

@media screen and (max-width:1050px){

    .history_wrapper{
        max-width:850px;
        padding:20px 20px 70px;
    }

    .history_nav{
        display:none;
    }

    .history_content{
        width:100%;
        max-width:800px;
        margin:0 auto;
    }

    .history_content::before{
        left:0;
    }

    .history_year_block{
        padding-left:45px;
        scroll-margin-top:110px;
    }

    .history_item{
        padding-left:40px;
    }

    .history_item::after{
        width:40px;
    }

}


/* =========================================================
   768px以下
========================================================= */

@media screen and (max-width:768px){

    .history_wrapper{
        max-width:none;
        padding:10px 15px 60px;
    }

    .history_content{
        max-width:none;
    }

    .history_year_block{
        margin-bottom:70px;
        padding-left:35px;
        scroll-margin-top:90px;
    }

    .year_title{
        margin-bottom:30px;
        font-size:26px;
    }

    .history_item{
        margin-bottom:35px;
        padding-left:30px;
    }

    .history_item::before{
        left:-1px;
        top:7px;
        width:12px;
        height:12px;
    }

    .history_item::after{
        top:12px;
        width:30px;
    }

    .date{
        margin-bottom:6px;
        font-size:14px;
        line-height:1.55;
    }

    .text{
        font-size:14px;
        line-height:1.85;
    }

    .history_item img{
        width:100%;
        max-width:100%;
        margin-top:15px;
    }

}


/* =========================================================
   480px以下
========================================================= */

@media screen and (max-width:480px){

    .history_wrapper{
        padding-left:12px;
        padding-right:12px;
    }

    .history_year_block{
        padding-left:28px;
        margin-bottom:60px;
    }

    .year_title{
        margin-bottom:25px;
        font-size:24px;
    }

    .history_item{
        margin-bottom:30px;
        padding-left:25px;
    }

    .history_item::before{
        width:10px;
        height:10px;
        top:8px;
    }

    .history_item::after{
        top:12px;
        width:25px;
    }

    .date{
        font-size:13px;
    }

    .text{
        font-size:13px;
        line-height:1.8;
    }

}


/* =========================================================
   Accessibility
========================================================= */

.history_nav a:focus-visible{
    outline:2px solid #1e3a8a;
    outline-offset:2px;
}


/* =========================================================
   Overflow Prevention
========================================================= */

.history_wrapper,
.history_content,
.history_year_block,
.history_item,
.history_item .content{
    min-width:0;
}