:root {
    --color-pink: #dd6366;
    --color-blue: #55a5b4;
    --color-lightBlue: #e6f2f3;
    --color-yellow: #ffff00;
    --cmn-color-black:#f5f5f5;
    --color-simbolmark:#D21C27;
}


/* cssリセット */
.itp_companyH2,
.itp_companyH3,
.companylist__video-title,
.companylist__list-item-name,
.companylist__video-btn,
p,
table {
    font: 12px/1.8 sans-serif;
}

/* destyle */
#wrapper div:after {
    display: none;
}
#wrapper * {
    box-sizing: border-box;
}

table td {
    vertical-align: middle;
}



/* 汎用系は衝突回避のため接頭辞「itp_」をつけています */
.itp_txtRight {
    text-align: right;
}

.itp_tbOnly {
    display: none;
}

.itp_pcOnly {
    display: block;
}

/* 見出し----------------------------------------------- */
.itp_companyH2 {
    background-color: var(--color-blue);
    color: white;
    font-size: 140%;
    padding: .1rem .5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.itp_companyH3 {
    background-color: var(--color-lightBlue);
    border: none;
    border-left: 7px solid var(--color-blue);
    color: black;
    padding: .2rem 8px;
    font-size: 120%;
    font-weight: bold;
}


/* 企業詳細----------------------------------------------- */
.company-movie {
    width: 100%;
    height: 350px;
}


/*  企業一覧----------------------------------------------- */
.itp_blueAarrow {
    position: relative;
}

.itp_blueAarrow::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 10px;
    position: absolute;
    top: 50%;
    left: -2px;
    transform: translateY(-50%);
    background-color: #77cce9;
    clip-path: polygon(0 0, 100% 50%, 0% 100%);
}

.companylist__top-banner img {
    width: 100%;
}

.companylist__top-explanation {
    text-align: center;
    font-weight: 500;
    font-size: 120%;
}


.companylist__video-list-more {
    width: fit-content;
    padding-left: 1em;
    margin-left: auto;
}

.companylist__video-list-more a {
    text-decoration: none;
    color: black;
    font-weight: bold;
}

.companylist__video-list {
    margin: 2rem auto 1rem;
}

.companylist__video-list-inner {
    display: grid;
    row-gap: 0.7rem;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.companylist__video-item {
    display: grid;
    grid-template-rows: subgrid;
    align-items: center;
    grid-row: span 3;
    padding: 1rem;
    box-shadow: 0px 0px 14px 5px rgba(50, 50, 50, 0.1);
}

.companylist__video-thmbnail-wrap {
    display: block;
}

.companylist__video-title {
    text-align: center;
    font-weight: 800;
    line-height: normal;
}

.companylist__video-thmbnail {
    width: 100%;
    transition: .2s;
}

.companylist__video-btn {
    width: fit-content;
    margin: auto;
    border: 2px solid var(--color-pink);
    border-radius: 50px;
    transition: .2s;
    font-size: 0.8rem;
    font-weight: bold;
}

.companylist__video-btn a {
    text-decoration: none;
    padding: 0.4rem 3rem 0.5rem;
    color: var(--color-pink);
    display: block;
    width: auto;
    height: 100%;
}

.companylist__video-btn:hover {
    background-color: var(--color-pink);
}

.companylist__video-btn:hover a {
    color: white;
}


/* 企業一覧リスト */
.companylist__list {
    margin-top: .5rem;
}

.companylist__list .companylist__list-item:first-child {
    border-top: 1px solid var(--color-blue);
}

.companylist__list-item-name-wrap {
    display: flex;
    width: 100%;
    justify-content: space-between;
    background-color: var(--color-blue);
    padding: 0.1rem 0.7rem;

}

.companylist__list-item-name {
    color: white;
    font-weight: bold;
    font-size: 120%;
    align-self: center;
    line-height: normal;
}

.companylist__list-item-link {
    color: var(--color-blue);
    background-color: white;
    text-decoration: none;
    padding: 0 1rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 110%;
    margin-left: auto;
    align-self: center;
    line-height: normal;
}

.companylist__list-item-link:hover {
    background-color: var(--color-yellow);
    transition: .2s;
}

.companyTbl {
    width: 100%;
}

.companyTbl th,
.companyTbl td {
    border: 1px solid var(--color-blue);
    padding: 0.4rem 0.7rem;
    font-weight: 600;
}

.companyTbl th {
    background-color: var(--color-lightBlue);
    width: 9rem;
}