@charset "UTF-8";
/*******************************

talk Css

*******************************/
.wrap-common {
    max-width: 1155px;
}

.tabWrap {
    margin-bottom: 150px;
}

/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px) {
    .wrap-common {
        width: 100%;
    }

    .tabWrap {
        margin-bottom: 50px;
    }
}

/*******************************
メンバー紹介
 *******************************/
.member {
    position: relative;
    width: 100%;
    margin-bottom: 100px;
}

.member > dd {
    position: relative;
}

.member ul {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 30px 2%;
}

.member ul li {
    width: 20%;
}

.member ul figure.staff {
    position: relative;
    max-width: 141px;
    margin: 0 auto 20px;
}

.member ul figcaption {
    position: absolute;
    top: 0;
    right: 0;
}

.member ul dt {
    font-weight: bold;
    margin-bottom: 20px;
}

.member ul dt span {
    display: block;
    font-size: 75%;
    font-weight: normal;
}

.member ul dd {
    text-align: left;
    width: 75%;
    margin: 0 auto;
    font-size: 90%;
    line-height: 1.8;
}

/*****　装飾　*****/
.member::before {
    display: block;
    content: '';
    width: 1px;
    height: 90%;
    background: #dcdcdc;
    position: absolute;
    right: 0;
    top: 30px;
    bottom: 0;
    margin: auto;
}

.member::after {
    display: block;
    content: '';
    width: 1px;
    height: 90%;
    background: #dcdcdc;
    position: absolute;
    left: 0;
    top: 30px;
    bottom: 0;
    margin: auto;
}

.member > dd::after {
    display: block;
    content: '';
    width: 98%;
    height: 1px;
    background: #dcdcdc;
    margin: auto;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
}

.horizon {
    width: 98%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.horizon:before,
.horizon:after {
    content: "";
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    height: 1px;
    background: #dcdcdc;
    display: block;
}

.horizon:before {
    margin-right: .4em;
}

.horizon:after {
    margin-left: .4em;
}

/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 896px) {
    .member ul::after {
        content: "";
        display: block;
        width: 30%;
    }
    .member ul li {
        width: 30%;
        margin-bottom: 50px;
    }

    .member ul li:nth-child(4),
    .member ul li:nth-child(5) {
        margin-bottom: 0;
    }
}

/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px) {
    .member {
        width: 95%;
        margin: 0 auto 50px;
    }
    .member ul::after {
        display: none;
    }
    .member ul li {
        width: 50%;
    }

    /*****　装飾　*****/
    .member::before {
        height: 95%;
    }
    .member::after {
        height: 95%;
    }
}

/*******************************
タブ切り替えボタン
 *******************************/
ul.tabArea {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

li.one_tab {
    width: 33%;
    cursor: pointer;
    border-radius: 10px 10px 0 0;
    padding: 10px 10px 0;
    background: #3e3a39;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

li.one_tab:hover {
    opacity: 0.7;
}

li.one_tab .tab_inner {
    color: #fff;
    padding: 25px 0;
    border-radius: 10px;
    width: 100%;
}

li.one_tab dl {
    border-left-style: solid;
    border-left-width: 6px;
    border-left-color: #3e3a39;
    padding: 5px 5% 10px 7%;
    text-align: left;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

li.one_tab dt {
    margin-bottom: 15px;
}

li.one_tab dt span.sec {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 5px;
}

li.one_tab dt span.tag {
    display: inline-block;
    border-radius: 3px;
    border: 1px solid #fff;
    color: #fff!important;
    font-size: 75%;
    padding: 2px 5px;
}

li.one_tab dd {
    font-weight: bold;
    font-size: 110%;
}

/*****　選択時　全体　*****/
li.select .tab_inner {
    color: #000;
    background: #fff;
}

li.select dt span.tag {
    border: none;
}

/*****　フッタータブ　*****/
ul.tabArea.bottom li.one_tab {
    border-radius: 0 0 10px 10px;
    padding: 0 10px 10px;
}

/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 896px) {
    li.one_tab dd {
        font-size: 100%;
    }
}

/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px) {
    li.one_tab {
        padding: 5px 5px 0;
    }

    li.one_tab .tab_inner {
        padding: 0px 0;
    }

    li.one_tab dl {
        border-left: none;
        padding: 5px 5%;
    }

    li.one_tab dt {
        margin-bottom: 0;
        text-align: center;
    }

    li.one_tab dt span.sec {
        display: block;
        margin-right: 0;
    }

    li.one_tab dt span.tag {
        display: block;
        text-align: center;
    }

    li.one_tab dd {
        display: none;
    }

    ul.tabArea.bottom li.one_tab {
        padding: 0 5px 5px;
    }
}

/*******************************
タブ切り替え 内容
 *******************************/
.contents .tab_main {
    text-align: left;
    display: none;
    padding: 30px 7%;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.tab_main.is_show {
    display: block;
}

.contents .tab_main h3 {
    display: none;
}

/*吹き出し*/
.balloon_l,
.balloon_r {
    margin: 50px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.balloon_r {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.faceicon {
    margin: 0;
}

.faceicon figcaption {
    text-align: center;
    font-size: 80%;
    margin-top: 5px;
}

.faceicon img {
    width: 85px;
    height: auto;
}

.balloon_r .faceicon {
    margin-left: 25px;
}

.balloon_l .faceicon {
    margin-right: 25px;
}

.balloon_r .faceicon {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
}

.comment {
    width: auto;
    max-width: 715px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 !important;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.balloon_r .comment {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.comment .wrap {
    position: relative;
    padding: 20px 4%;
    border-radius: 10px;
    background: #fff;
    width:auto;
}

.comment.color .wrap {
    background: #fdab61;
    color: #fff;
}

.comment p {
    width: auto;
    font-size: 95%;
    line-height: 2;
}

.comment:after {
    content: "";
    position: absolute;
    border: 10px solid transparent;
    top: 15px;
}

.balloon_l .comment:after {
    left: -26px;
    border-right: 22px solid #fff;
}

.balloon_r .comment:after {
    right: -26px;
    border-left: 22px solid #fff;
}

.balloon_r .comment.color:after {
    border-left: 22px solid #fdab61;
}

.marker {
    color: #fff;
    padding: 4px;
    margin: 0 5px 0 0;
}

.marker.blue {
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(0%, #81c1f4));
    background: linear-gradient(transparent 0%, #81c1f4 0%);
}

.marker.orange {
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(0%, #fdab61));
    background: linear-gradient(transparent 0%, #fdab61 0%);
}

figure.photo {
    width: 100%;
    margin: 50px 0;
    text-align: center;
}

/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px) {
    .contents .tab_main {
        padding: 30px 5%;
    }

    .contents .tab_main h3 {
        display: block;
        font-weight: bold;
        font-size: 160%;
        line-height: 1.8;
        border-left-style: solid;
        border-left-width: 6px;
        padding-left: 4%;
        margin-bottom: 40px;
    }

    /*吹き出し*/
    .balloon_l,
    .balloon_r {
        margin: 30px 0;
    }

    .faceicon img {
        width: 50px;
    }

    .comment .wrap {
        padding: 10px 4%;
    }

    .comment p {
        font-size: 100%;
        line-height: 1.7;
    }

    .marker {
        padding: 2px;
    }

    figure.photo {
        margin: 30px 0;
    }
}

/*******************************
選択時カラー指定
 *******************************/

/*****　section 01　*****/

/*背景色*/
li.sec01.select,.tab_main.sec01.is_show {
    background: #ddf2fa;
}

/*見出し帯色*/
li.sec01.select dl,.contents .tab_main.sec01 h3 {
    border-left-color: #81c1f4;
}

/*section文字色*/
li.sec01.select dt {
    color: #81c1f4;
}

/*タグ色*/
li.sec01.select dt span.tag {
    background: #81c1f4;
}

/*****　section 02　*****/

/*背景色*/
li.sec02.select,.tab_main.sec02.is_show {
    background: #fadde0;
}

/*見出し帯色*/
li.sec02.select dl,.contents .tab_main.sec02 h3 {
    border-left-color: #f4819c;
}

/*section文字色*/
li.sec02.select dt {
    color: #f4819c;
}

/*タグ色*/
li.sec02.select dt span.tag {
    background: #f4819c;
}

/*****　section 03　*****/

/*背景色*/
li.sec03.select,.tab_main.sec03.is_show {
    background: #e7fadd;
}

/*見出し帯色*/
li.sec03.select dl,.contents .tab_main.sec03 h3 {
    border-left-color: #ace553;
}

/*section文字色*/
li.sec03.select dt {
    color: #ace553;
}

/*タグ色*/
li.sec03.select dt span.tag {
    background: #ace553;
}
