/* 全体 */
/* .contents-body{
    max-width: 1200px;
    margin: 0 auto;
} */

/* ページタイトル */
.page-title{
    text-align: center;
    font-size: 54px;
}

/* 採用メッセージ */
.section-message{
    /* display: flex; */
    margin-top: 100px;
}

.recruit-message-txt{
    max-width:  450px;/* 円のサイズ（高さにもなる） */
    border-radius: 100%;
    padding: 65px;
    background: #add8e6;
    /* 以下のFlexboxで文字を中央寄せ */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; 

    position: absolute;
    left:50%;
    top: 6%;
    transform: translate(-50%,-50%);
}

.recruit-message-txt::before {/* 擬似要素で正円を作る */
    display: block;
    content: '';
    padding-top: 100%;
  }

.recruit-message-img{
    display: flex;
    justify-content: center; /* 水平方向にセンターに配置 */
     align-items: center;
    margin:0 auto 5%;
}

.recruit-message-img img{
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius:50%;
    position: absolute;
    top: 9.5%;
    left:42%;
    transform: translate(-50%,-50%);
}

.section-message-recruit{
    margin: 20px 80px;
    /* display: flex; */
}

/* 企業の取組 */
.corporate-inisiative{
    margin-top: 600px;
    margin-bottom: 300px;
}

.corporate-inisiative-title{
    /* font-size: 40px; */
    position: relative;
    text-align: center;
    /* font-size: 2.8em; */
    font-weight: 700;
    letter-spacing: .05em;
    line-height: 1em;
    margin: 5em 0;
}

.corporate-inisiative-title span{
    display: inline-block;
    height: 108px;
    background: url(https://dev-main.ask-ibs.jp/themes/custom/IBSCompany/image/recruit-site/balloon-inner.svg) 50% 50% no-repeat;
    background-size: auto 100%;
    position: relative;
    padding: 2.1em 0 0;
}

.corporate-inisiative-title span::before{
    content: "";
    width: 50px;
    height: 100%;
    position: absolute;
    top: 0;
    left: -50px;
    background: url(https://dev-main.ask-ibs.jp/themes/custom/IBSCompany/image/recruit-site/balloon-left.svg) left top no-repeat;
    background-size: auto 100%;
}

.corporate-inisiative-title span::after{
    content: "";
    width: 50px;
    height: 100%;
    position: absolute;
    top: 0;
    right: -50px;
    background: url(https://dev-main.ask-ibs.jp/themes/custom/IBSCompany/image/recruit-site/balloon-right.svg) right top no-repeat;
    background-size: auto 100%;
}

.list li{
    width: 38.9%;
    background-color: rgb(240,240,240);
    text-align: center;
    font-size: 1em;
    line-height: 1.2em;
    letter-spacing: 0.05em;
    height: 50px;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    margin: 0px 0px 16px;
}


.list{
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-evenly;
}

/* 事業紹介 */
.introduction-box{
    display: flex;
    flex-wrap: wrap;
    margin: 120px auto;
}

.introduction-title{
    margin: 30px 0 20px 80px;
    font-size: 40px;
}

.introduction-head{
    font-size: 36px;
    margin: 50px 0;
}

.introduction-head::before{
    content: "−";
    color: #0073e6;
    font-weight: bold;
    margin-right: 5px;
}

.introduction-txt{
    margin: 20px 0;
}

.product-circle > img{
    width: 130px;
    margin: 0 auto;
}

.product-title{
    font-size: 24px;
    padding: 15px 0;
    text-align: center;
}

.product-box{
    display: flex;
}

.product-box-reverse{
    display: flex;
    flex-direction: row-reverse;
}

.product-circle{
    max-width: 550px;
    border-radius: 50%;
    background-color: #add8e6;
    padding: 100px;
    /* background-image: url(https://dev-main.ask-ibs.jp/themes/custom/IBSCompany/image/recruit-site/circle-1.png);
    background-repeat: no-repeat; */
    /* 以下のFlexboxで文字を中央寄せ */
}

.product-circle-space{
    width: 480px;
    border-radius: 50%;
    background-color: #fff;
    padding: 16px;
}

