@charset "utf-8";
/* CSS Document */


        /* 会社概要 FV */
        main{ position: relative; padding-top:  8rem;}
        @media (max-width: 768px) {main{ position: relative; padding-top: 5rem;!important}}


        .company-fv {
            background-image: url("../images/company-page-fv-pc.jpg");
            background-size: cover;
            background-position: center;
            height: 350px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        
        @media screen and (max-width: 736px){
            .company-fv {
                background-image: url("../images/company-page-fv-sp.jpg");
                height: 270px;
            }
        }        
        
        .company-fv::before {
            content: '';
            position: absolute;
            inset: 0;
            background-color: rgba(0, 0, 0, 0.4);
        }
        .company-fv-en {
            font-family: 'Inter', sans-serif;
            font-size: 4rem;
            font-weight: 800;
            color: #fff;
            line-height: 1;
            letter-spacing: 0.05em;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
            position: relative;
            z-index: 10;
        }
        
        @media screen and (max-width: 736px){
            .company-fv-en {
                font-size: 3rem;
                line-height: 0.7;
            }
        }    
        .company-fv-jp {
            font-size: 1.25rem;
            font-weight: 400;
            color: #fff;
            margin-top: 0.5rem;
            text-shadow: 0 1px 3px rgba(0,0,0,0.5);
            position: relative;
            z-index: 10;
            text-align: center;
        }
        
        .company-ttl{
            padding: 0 1.4rem;
        }
                
        @media (max-width: 768px) {
        .company-ttl p{
            text-align: center;
        }}    
        
        .company-ttl h2{
            margin-bottom: 2rem;
			font-size: 2rem;
		    font-family: 游明朝, YuMincho, ヒラギノ明朝 Pro W3, Hiragino Mincho Pro, HG明朝E, MS P明朝, MS 明朝, serif;
        }    
        
        
        @media (max-width: 768px) {
        .company-ttl h2{
            text-align: center;
            font-size: 2rem !important;
            margin-bottom: 2rem;
        }}    
        

        
        /* プロフィールテーブル */
        .profile-table {
            width: 100%;
            border-collapse: collapse;
        }
        .profile-table tr {
            border-bottom: 1px solid #e5e7eb;
        }
        .profile-table th {
            width: 30%;
            padding: 2rem 1.5rem;
            text-align: left;
            font-weight: 700;
            background-color: #fcfcfc;
            color: #a67c34;
            vertical-align: top;
            font-size: 0.9rem;
            letter-spacing: 0.05em;
        }
        .profile-table td {
            padding: 2rem 1.5rem;
            line-height: 1.8;
            font-size: 0.95rem;
        }
        @media (max-width: 768px) {
            .profile-table th { width: 100%; display: block; padding: 1.5rem 1rem 0.5rem; }
            .profile-table td { width: 100%; display: block; padding: 0 1rem 1.5rem; }
        }

        /* ブランドロゴ枠 */
        .brand-wrap{
            padding: 8rem 0;
        }
        .brand-card {
            opacity: 0.8;
            background: #fff;
            border-radius: 4px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            width: 16%;
            min-width: 230px;
            /*border: 1px solid #eee;*/
            transition: all 0.3s;
        }
        /*.brand-card:hover {
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            transform: translateY(-3px);
            border-color: #a67c34;
        }*/
        .brand-card span {
            font-family: 'Inter', sans-serif;
            font-weight: 800;
            letter-spacing: 0.1em;
            color: #433f37;
        }

        .brand-blk{
            display: flex;
            flex-wrap: wrap;
            width: 100%;
            justify-content: center;
                gap: 3rem 1rem;
        }
		
        @media (max-width: 768px) {
        .brand-blk{
            gap: 3rem;    
        }}
		
        /* アニメーション */
        .fade-in-section { opacity: 0; transform: translateY(30px); transition: opacity 1s ease-out, transform 1s ease-out; }
        .fade-in-section.is-visible { opacity: 1; transform: translateY(0); }
		