@charset "utf-8";

/* h1 */
.pageTtl{
    background: #790002;
    line-height: 1.4;
    min-height: 30px;
    padding: 25px 0px;
}
.pageTtl .inr {
    display: block;
    max-width: 950px;
    padding: 0px;
    margin: 0 auto;
}
.pageTtl .heading {
    font-size: 2.4rem;
    color: #FFF;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-weight: 500;
}
.icon {
    width: 32px; 
    height: 32px;
    object-fit: contain;
}
.mvLead{
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.button-link {
margin-top: 40px;
}



/* 講師紹介 */
.people-intro{
    font-size: 2rem;
}
.clmWrap {
    background-color: #faf5ed;
    padding: 40px;
    align-items: center;
}

.clmItem {
  display: flex;
  gap: 20px;
  align-items: center;
}

.left-column {
    flex: 0 0 240px;
    padding-left: 85px;
    box-sizing: border-box;
}

.left-column img {
    max-width: 100%;
    height: auto;
    display: block;
}

.right-column {
    flex: 1;
    max-width: 690px;
}

/* 対談風景 */
.talk-block {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 100%;
}

.talk-inner {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    max-width: 100%;
}

.talk-inner.right {
    flex-direction: row-reverse;
}

.speaker {
    text-align: center;
    width: 100px;
}

.avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
}

.name {
    margin-top: 12px;
    font-size: 1.6rem;
    color: #555;
}

.speech {
    background-color: #faf5ed;
    padding: 20px;
    font-size: 1.6rem;
    line-height: 1.6;
    flex: 1;
    position: relative;
    max-width: 700px;
    width: 100%;
}

.talk-inner.right .speech {
    background-color: #faf5ed;
}

.speech::before {
    content: '';
    position: absolute;
    top: 25px;
    border: 16px solid transparent;
}

.talk-inner.left .speech::before {
    left: -28px;
    border-right-color: #fdf5e6;
}

.talk-inner.right .speech::before {
    right: -28px;
    border-left-color: #fdf5e6;
}

.talk-pic{
    max-width: 848px;
    width: 100%;
    display: block;
    margin: 0 auto;
}

/* 点線 */
.dotted-rule {
  height: 1px;
  background-image: repeating-linear-gradient(
    to right,
    #999,        
    #999 3px, 
    transparent 0px,
    transparent 5px 
  );
  margin: 40px 0;
}



@media screen and (max-width: 768px) {
    /* h1 */
    .pageTtl h1.heading {
        display: block;
        font-size: 2rem;
    }
    .pageTtl .inr {
        padding: 0 10px;
    }
    .pageTtl h1 .icon {
        display: inline-block;
        vertical-align: top;
        margin-right: 8px;
        padding-left: 13px;
        width: 36px;
        height: 29px;
    }
    .pageTtl .heading .title-main {
        display: inline-block;
    }
    .pageTtl .title-sub {
        display: block;      
        margin-top: 10px; 
    }
    .mvLead{
        margin: 20px 0px !important;
    }
    /* h2 */
    .pageTtl h2.heading {
        display: inline-flex;
        align-items: flex-start;
        font-size: 1.8rem;
        flex-wrap: nowrap;
    }

    .pageTtl h2 .icon {
        width: 28px;
        height: 28px;
        margin-right: -3px;
        padding-left: 9px;
        object-fit: contain;
        flex-shrink: 0;
        width: 20px;
        height: 46px;
    }

    .pageTtl h2 .title-main {
        display: inline-block;
    }
    .ttl-single{
        padding-top: 12px;
    }

    .button-link {
    margin-top: 32px;
    }

    /* 講師紹介 */
    .people-intro{
        font-size: 1.8rem;
        font-weight: 550;
        text-align: center;
    }
    .clmWrap {
        background-color: #faf5ed;
        display: block;
        padding: 10px;
        align-items: center;
    }
    .clmItem {
        display: block;
        align-items: center;
    }
    .left-column {
        width: 50%;
        margin: 20px auto;
        box-sizing: border-box;
        padding-left: 0px;
    }
    .right-column {
        flex: none;
        max-width: 100%;
    }


    /* 対談風景 */
    .speech{
        margin-top: 20px;
    }
    .speech::before,
    .dialog-box.reverse .speech::before {
        display: none; /* スマホでは三角なしでもOK */
    }
     .speaker {
    display: none;
    }

    /* 後藤ラベル */
    .talk-inner.nakamura .speech::after {
        content: '中村';
        position: absolute;
        top: -29px;
        right: 0;
        background: #790002;
        color: #fff;
        font-size: 1.6rem;
        padding: 2px 10px;
        letter-spacing: 2px;
    }

    /* 岩崎ラベル */
    .talk-inner.iwasaki .speech::after {
        content: '岩﨑';
        position: absolute;
        top: -29px;
        left: 0;
        background: #790002;
        color: #fff;
        font-size: 1.6rem;
        padding: 2px 10px;
        letter-spacing: 2px;
    }
    
}