@charset "utf-8";
/*共通設定*/
.intro,
.company {
    margin-top: 80px;
}

.intro-in,
.company-in {
    max-width: 1000px;
    margin: 0 auto;
}

.officer-h2,
.company-h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    margin-bottom: 32px;
}
/*終わり*/

/*<section class="intro">*/
.img-flex {
    display: flex;
    align-items: center;
    justify-content: left;
    flex-wrap: wrap;
    width: 100%;
    gap: 24px;
    margin-bottom: 60px;
}

.officer-img {
    width: 40%;
}

.officer-name {
    width: calc(60% - 24px);
}

.name-large {
    font-size: 48px;
    font-weight: 600;
}

.name-medium {
    font-family: 'Oswald', sans-serif;
    color: #5B5B5B;
    font-size: 18px;
}

.officer-txt {
    margin-bottom: 80px;
}
/*終わり*/

/*<section class="company">*/
.company {
    background-color: #F4F4F4;
    padding: 80px 5vw;
}

.com-flex {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.com-dl {
    width: 49%;
    display: flex;
    flex-wrap: wrap;
}

.com-dl dt {
    line-height: 1;
    width: 30%;
    border-top: solid 1px #CCCCCC;
    padding: 40px 0;
}

.com-dl dd {
    line-height: 1;
    width: 68%;
    border-top: solid 1px #CCCCCC;
    padding: 40px 0;
}

.address-txt p {
    display: block;
    margin-bottom: 8px;
}

.com-span {
    font-weight: 600;
}

.address-link {
    line-height: 1.5;
    border-bottom: solid 1px #999;
}

.com-span02 {
    display: block;
    margin-top: 40px;
}

.last-dt,
.last-dd {
    border-bottom: solid 1px #CCCCCC;
}
/*終わり*/

/*<section class="contact-btn-area">*/
.contact-btn-area {
    margin-top: 0;
}
/*終わり*/


/*タブレット*/
@media (max-width: 1024px) {  
/*共通設定*/
/*終わり*/  

/*<section class="company">*/
    .com-dl dt {
        width: 40%;
    }

    .com-dl dd {
        width: 60%;
    }
/*終わり*/
}


/*スマホ*/
@media (max-width: 599px) {
/*共通設定*/
    .officer-h2,
    .company-h2 {
        text-align: center;
    }
/*終わり*/  

/*<section class="intro">*/
    .img-flex {
        display: block;
        margin-bottom: 24px;
    }

    .officer-img {
        width: 100%;
        margin-bottom: 16px;
    }

    .officer-name {
        text-align: center;
        width: 100%;
    }

    .name-large {
        font-size: 32px;
    }

    .name-medium {
        font-size: 16px;
    }
/*終わり*/  

/*<section class="company">*/
    .com-flex {
        display: block;
    }

    .com-dl {
        width: 100%;
    }

    .com-dl dt {
        border-top: solid 2px #111;
    }  
    
    .com-dl dd {
        padding-left: 16px;
    }

    .last-dt02 {
        border-bottom: solid 2px #111;
    }

/*終わり*/  
}