@charset "UTF-8";

.titleSub{
    text-align:center;
}

.titleSub p{
    font-size:1.4rem;
}

/* ===========
      About
   =========== */
#About {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 72px;
}

/* 説明文 */
.aText {
    width: 50%;
}

.name {
    font-weight: bold;
    font-size: 2rem;
    padding-bottom: 0.5rem;
}

.name span {
    color: #969696;
    font-size: 1.2rem;
}

.status {
    padding-bottom: 2rem;
}

/* 写真 */
.aIMG {
    width: 40%;
    text-align: right;
}

.aIMG img {
    width: 100%;
    height: calc((100vw - 160px * 2) * 0.4 * 0.75);
    object-fit: cover;
}

/*==== タブレット以下 ====*/
@media screen and (max-width: 1024px) {
    #About {
        flex-direction: column-reverse;
    }

    .aIMG {
        width: 100%;
        text-align: center;
    }

    .aIMG img {
        height: calc((100vw - 160px) * 0.75);
    }

    .aText {
        width: 100%;
    }
}

/*==== スマホ ====*/
@media screen and (max-width: 599px) {

}

/* ===========
      キャリア
   =========== */
#Career {
    display: flex;
    flex-flow: column;
    align-items: center;
}

.timeLineContent {
    border-left: 3px #e5e5d1 solid;
    padding-left: 30px;
    padding-bottom:1.5rem;
}

.timeLine {
    list-style: none;
    padding-top:24px;
    padding-bottom:40px;
    width:100%;
}

.contentTitle {
    font-size: 1.4rem;
    font-weight: bold;
    margin-top:10px;
}

/*==== タブレット ====*/
@media (min-width : 600px) {

    .timeLine>li {
        overflow: hidden;
        margin: 0;
        position: relative;
    }
    
    .timeLineDate {
        width: 80px;
        float: left;
        margin-top: 20px;
    }
    
    .timeLineContent {
        width: calc(100% - 160px);
        float: left;
    }

    .timeLineContent:before {
        content: '';
        width: 12px;
        height: 12px;
        background: #6fc173;
        position: absolute;
        left: 76px;
        top: 24px;
        border-radius: 100%;
    }
}
/*==== PC ====*/
@media screen and (min-width: 1024px) {
    .timeLine {
        width:70%;
    }
    .timeLineDate {
        width: 110px;
    }
    
    .timeLineContent:before {
        left: 106px;
    }
}

/*==== スマホ ====*/
@media screen and (max-width: 599px) {
    
}

/* ===========
      お問い合わせ
   =========== */
   #Contact {
    display: flex;
    flex-flow: column;
    align-items: center;
}

.contactBox{
    padding: 48px 0px 84px;
}

.btnBox{
    padding-top:48px;
}

.c_btn{
    margin:0 auto;
}
/*==== タブレット ====*/
@media (min-width : 600px) {

}
/*==== PC ====*/
@media screen and (min-width: 1024px) {
}

/*==== スマホ ====*/
@media screen and (max-width: 599px) {
    
}