@charset "utf-8";

.lineDashTitleWrap{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
}

.lineDashTitleWrap:before,
.lineDashTitleWrap:after{
    content: '';
    flex-grow: 1;
    height: 4px;
    margin: 0 10px;
    position:absolute;
}

.lineDashTitleWrap:before{
    width: 40%;
    left:0;
    background: linear-gradient(to right, #985219, #985219 85%, transparent 85%, transparent 90%, #985219 90%, #985219);
}

.lineDashTitleWrap:after{
    width: 40%;
    right: 0;
    background: linear-gradient(to right, #985219, #985219 10%, transparent 10%, transparent 15%, #985219 15%, #985219);
}

.lineDashTitle {
    display: inline-block;
    color:#8D6544;
    font: bold 2.5rem 'Bernard MT','Noto sans JP',sans-serif;
    position: relative;
    margin:0;
}
.lineDashTitle:before{
    width:100%;
    content: attr(title);
    color: rgba(255, 255, 255, .35);
    position: absolute;
    top: 2px;
    left: 2px;
    -ms-filter: blur(1px);
    filter: blur(1px);
}

.lineDashTitleKana{
    text-align: center;
    color:#C59D7C;
    font-weight:bold;
    font-size:1rem;
    margin: 0 0 2rem 0;
    padding:0;
}


/* 以下からindex.cssの内容 */
#interview{
    background:#FEFEF2;
    height:100%;
}

.interviewWrap{
    max-width:1200px;
    margin: 0 auto;
}

.kvArea img{
    max-width:100%;
}
p.catch{
    max-width:960px;
    margin: 2rem auto;
    font-size:1.2rem;
    line-height: 1.8;
    color:#004684;
}

.contentsWrap{
    padding:2rem;
    box-sizing: border-box;
}

.interviewMenuList{
    display:flex;
    flex-wrap:wrap;
    justify-content: space-between;
    gap:30px;
    margin-bottom:30px;
}

.interviewMenu{
    width:100%;
    display:flex;
    flex-wrap:wrap;
    justify-content: space-between;
}

.interviewBox{
    max-width:350px;
    width:100%;
}

.interviewBox details {
    border-radius: 4px;
    margin: 10px 0;
}

.interviewBox summary {
    background: #ffffff;
    border: 1px solid #00898E;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    padding:1.25rem 1rem;
    color:#00898E;
    list-style: none;
    position:relative;
}

.interviewBox details summary::-webkit-details-marker {
    display: none;
}

.interviewBox details[open] summary {
    color: #00898E;
}

.interviewBox summary::before {
    content: "+";
    font-size: 32px;
    color: #00898E;
    text-align: center;
    width: 40px;
    z-index:3;
    position: absolute;
    top: 45%;
    right: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.interviewBox details[open] summary::before {
    content: "-";
    color: #00898E;
}

.interviewBox summary::after{
    content:"";
    display: block;
    width: 40px;
    height:100%;
    background: #E6F1F0;
    border-radius:0 0 0 0;
    position:absolute;
    top:0;
    right:0;
    z-index:2;
}

.interviewLink{
    margin-top:1rem;
}

.linkCard{
    background-color: #eaf7f7;
    border-radius: 8px;
    box-shadow: 3px 3px 0 #006D71;
    color: #333;
    align-items: center;
    display: flex;
    justify-content: space-between;
    text-decoration: none;
    max-width: 400px;
    margin: 1rem auto 0 auto;
    padding: 1rem 3rem 1rem 1rem;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.linkCard:hover{
    opacity:0.5;
    transition:0.3s;
}

.cardContent{
    width:95%;
}

.cardContent h3 {
    font-size: 18px;
    margin: 0.5rem 0 1.5rem 0;
    color: #025457;
}

.profile {
    display: flex;
    align-items: center;
}

.profile img {
    width: 60px;
    height: 60px;
    margin-right: 10px;
    background: #eee;
}

.profile .name {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    color:#025457;
}

.profile .message {
    font-size: 12px;
    color:#025457;
    margin: 5px 0 0;
    line-height: 1.4;
    width:100%;
}

.linkCard::before{
    content: "";
    width: 10px;
    height:15px;
    background-color: #ffffff;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    position: absolute;
    top: 50%;
    right: 3%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    z-index:3;
}

.linkCard::after{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right:0;
    width: 40px;
    background-color: #00898E;
    border-radius:0px 8px 8px 0px;
    z-index:2;
}

@media screen and (max-width:1200px) {
    .lineDashTitleWrap:before{
        width: 35%;
    }

    .lineDashTitleWrap:after{
        width: 35%;
    }
}

@media screen and (max-width:768px) {
    .interviewMenu{
        width:100%;
        display:flex;
        flex-wrap:wrap;
        justify-content: space-between;
    }

    .interviewBox{
        width:100%;
        max-width:100%;
    }

    .lineDashTitleWrap:before,
    .lineDashTitleWrap:after{
        content: '';
        flex-grow: 1;
        height: 4px;
        margin: 0 10px;
        position:absolute;
    }

    .lineDashTitleWrap:before{
        width: 30%;
    }

    .lineDashTitleWrap:after{
        width: 30%;
    }
}

@media screen and (max-width:540px) {
    .lineDashTitleWrap:before{
        width: 20%;
    }

    .lineDashTitleWrap:after{
        width: 20%;
    }
}