@charset "utf-8";
/*----------------------------------------------------
    共通css
----------------------------------------------------*/

.ac-btn {
  width: 40%;
  margin: 0 auto 20px auto !important;
  padding: 20px 32px 20px 20px;
  display: block;
  background: #0096d2;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  color: #fff;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  position: relative;
}

.ac-btn .ac-btn-off {
  color: #fff !important;
  ;
}

.ac-btn:after {
  content: "";
  background: url(../../../../wp/wp-content/uploads/ac-btn_off.png);
  background-size: cover;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 35%;
  right: 20px;
}

.ac-btn:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
}

/* .ac-btn.is-open .ac-btn-off {
  display: none;
}
 */
.ac-btn.is-open:after {
  background: url(../../../../wp/wp-content/uploads/ac-btn_on.png);
  background-size: cover;
}

.ac-btn.is-open:before {
  content: '合格実績を閉じる';
}

.accordion-item {
  display: none;
}
#pankuzu br {
    display: none;
}
.img_center {
    font-size: 10px;
    color: #999999;
    margin: 0 auto 30px;
    text-align: center;
    word-break: break-all;
line-height: 1.6rem;
}
.img_center img {
    padding-bottom: 5px;
}
img.image-map {
    margin: 0 auto;
    display: block;
}
p.image-maptext {
    font-weight: bold;
    text-align: center;
    color: #e87403;
    margin-bottom: 10px;
}

       .interview-container {
            max-width: 1000px;
            margin: 5rem auto;
            padding: 30px 40px;
            background-color: #f5f5f5;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }

        /* --- インタビューイーのプロフィール --- */
        .interviewee-profile {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 2px solid #f0f0f0;
        }

        .interviewee-profile img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #fdb50a; /* アクセント1 */
        }

        .interviewee-profile .name {
            font-size: 1.5em;
            font-weight: bold;
            color: #333d47;
        }
        
        .interviewee-profile .name span {
            font-size: 0.7em;
            font-weight: normal;
            color: #777;
            margin-left: 5px;
        }

        /* --- Q&Aセクション --- */
        .qa-section {
            margin-bottom: 35px;
        }

        /* --- 質問のデザイン --- */
        .question {
            position: relative;
            padding: 15px 20px 15px 55px;
            background-color: #f7f7f7;
            font-weight: bold;
            font-size: 1.1em;
            margin-bottom: 20px;
            border-left: 5px solid #0096d2; /* アクセント2 */
        }

        .question::before {
            content: 'Q';
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5em;
            font-weight: bold;
            color: #0096d2; /* アクセント2 */
        }

        /* --- 回答のデザイン --- */
        .answer {
            position: relative;
            padding-left: 30px;
        }

        .answer::before {
            content: 'A';
            position: absolute;
            left: 0;
            top: 4px;
            font-size: 1.5em;
            font-weight: bold;
            color: #fdb50a; /* アクセント1 */
        }

        /* --- 強調テキスト（マーカー風） --- */
        .answer strong {
            background: linear-gradient(transparent 60%, #fdb50a66 60%); /* アクセント1の半透明 */
            font-weight: bold;
            padding: 2px 0;
        }

.caption a {
    text-decoration: none;
}







/*----------------------------------------------------
    PCサイトcss
----------------------------------------------------*/
@media screen and (min-width: 600px) {

.question-flex {
    display: flex;
}

.question-conclusion {
    max-width: 80%;
    margin: 0 auto;
}

.question-item img {
    margin: 0 auto;
    display: block;
}

.question-flex .question-item {
    width: 50%;
}




}
/*----------------------------------------------------
    SPサイトcss
----------------------------------------------------*/
@media screen and (max-width: 599px) {

.interview-container {
                padding: 20px;
	}

.interviewee-profile {
                flex-direction: column;
                gap: 15px;
                text-align: center;
	}
            
.question {
                padding: 12px 15px 12px 50px;
                font-size: 1em;
	}

.answer {
                padding-left: 25px;
	}



}