@charset "utf-8";

/* ########## 全体エリア　############################ */
.other_area{
    width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.other_a1 {
    text-align: left;
    margin: 50px 0 0 10px;
    position: relative;
}

/* ########## 企業理念　############################ */

/* ----------見出し文字-------------- */
.philosophy_top_t {
    position: relative;
    font-size: 20px;
    padding: 5px 0px;
    text-align: center;
    margin: 40px 0px 60px 0px
}
.philosophy_top_t:before {
    content: "";
    position: absolute;
    top: -18px;
    left: 50%;
    width: 100px;
    height: 60px;
    border-radius: 50%;
    border: 5px solid #BFE9FF;
    border-left-color: transparent;
    border-right-color: transparent;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
/* ----------エリア・文字・配置-------------- */
.philosophy_area {
    margin: 20px 25px 30px 45px;
    padding: 10px 20px 15px 20px;
    border: 1px solid #CCC;
    border-radius: 10px;
    font-size: 14px;
    overflow: hidden;
}
.philosophy_img {
    width: calc(25% + 100px);
    float: right;
    margin: 10px 0 15px 40px;
}
.philosophy_img img {
    width: 100%;
}
.philosophy_text {
    text-align: left;
}
.philosophy_text .text_1 {
    font-weight: bolder;
    width: fit-content;
    padding: 5px 15px 5px 15px;
    color: #333333;/*文字色*/
    background: #F0F0F0;/*背景色*/
    border-left: solid 5px #0089CF;/*左線（実線 太さ 色）*/
}
.philosophy_text .text_2 {
    margin: 0px 0px 30px 40px;
}
.philosophy_text p {
    margin-left: 20px;
    text-indent: -1em;
    padding-left: 1em;
}

/* ############# 画面 750px以下 ######################################################## */
@media (max-width: 750px){
    /* 汎用設定　---------------------- */
    .philosophy_img {
        width: 75%;
        float: none;
        margin: auto;
    }
    .philosophy_area {
        margin: 20px 10px 30px 15px;
        padding: 10px 10px 15px 10px;
    }
    .philosophy_text p {
        margin-left: 10px;
    }
    .philosophy_text .text_2 {
        margin: 0px 0px 30px 25px;
    }
}


